diff OrthancServer/Plugins/Engine/OrthancPluginDatabaseV3.cpp @ 5466:dceed5e3d6a9 pg-transactions

new DB plugin primitive: UpdateAndGetStatistics
author Alain Mazy <am@osimis.io>
date Fri, 15 Dec 2023 17:15:43 +0100
parents 176bc05f85f4
children b3ebe249ed5b
line wrap: on
line diff
--- a/OrthancServer/Plugins/Engine/OrthancPluginDatabaseV3.cpp	Wed Dec 13 15:44:33 2023 +0100
+++ b/OrthancServer/Plugins/Engine/OrthancPluginDatabaseV3.cpp	Fri Dec 15 17:15:43 2023 +0100
@@ -1088,7 +1088,11 @@
     errorDictionary_(errorDictionary),
     database_(database),
     serverIdentifier_(serverIdentifier),
-    dbCapabilities_(false, false /* revision support is updated in open() */, false, false)
+    dbCapabilities_(false,  /* hasFlushToDisk */
+                    false,  /* revision support is updated in open() */ 
+                    false,  /* hasLabelsSupport */
+                    false,  /* hasAtomicIncrementGlobalProperty */
+                    false   /* hasUpdateAndGetStatistics */)
   {
     CLOG(INFO, PLUGINS) << "Identifier of this Orthanc server for the global properties "
                         << "of the custom database: \"" << serverIdentifier << "\"";