diff Framework/PostgreSQL/PostgreSQLStatement.cpp @ 235:f2b32d31fc99

fix lsb build, fix backward compatibility with SDK <= 1.9.1
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 08 Apr 2021 11:42:32 +0200
parents d1b124d116c1
children 35598014f140
line wrap: on
line diff
--- a/Framework/PostgreSQL/PostgreSQLStatement.cpp	Thu Apr 08 10:50:01 2021 +0200
+++ b/Framework/PostgreSQL/PostgreSQLStatement.cpp	Thu Apr 08 11:42:32 2021 +0200
@@ -285,7 +285,11 @@
         PQclear(result);
       }
       
+#if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 9, 2)
       throw Orthanc::OrthancException(Orthanc::ErrorCode_DatabaseCannotSerialize);
+#else
+      throw Orthanc::OrthancException(Orthanc::ErrorCode_Database, "Collision between multiple writers");
+#endif
     }
     else if (result == NULL)
     {