comparison PostgreSQL/Plugins/PostgreSQLIndex.h @ 431:7c1fe5d6c12c pg-transactions

PG: IncrementGlobalProperty
author Alain Mazy <am@osimis.io>
date Thu, 07 Dec 2023 12:13:43 +0100
parents 91124cc8a8c7
children 5964ce6385a5
comparison
equal deleted inserted replaced
430:f1f3c5554283 431:7c1fe5d6c12c
88 // New primitive since Orthanc 1.12.0 88 // New primitive since Orthanc 1.12.0
89 virtual bool HasLabelsSupport() const ORTHANC_OVERRIDE 89 virtual bool HasLabelsSupport() const ORTHANC_OVERRIDE
90 { 90 {
91 return true; 91 return true;
92 } 92 }
93
94 virtual bool HasAtomicIncrementGlobalProperty() ORTHANC_OVERRIDE
95 {
96 return true;
97 }
98
99 virtual int64_t IncrementGlobalProperty(DatabaseManager& manager,
100 const char* serverIdentifier,
101 int32_t property,
102 int64_t increment) ORTHANC_OVERRIDE;
103
93 }; 104 };
94 } 105 }