diff OrthancServer/Sources/Database/BaseDatabaseWrapper.cpp @ 5757:5463c3ae3235 large-queries

refactored extended /changes
author Alain Mazy <am@orthanc.team>
date Thu, 05 Sep 2024 18:21:56 +0200
parents 3765085693e5
children ca06dde85358
line wrap: on
line diff
--- a/OrthancServer/Sources/Database/BaseDatabaseWrapper.cpp	Thu Jul 04 07:40:58 2024 +0200
+++ b/OrthancServer/Sources/Database/BaseDatabaseWrapper.cpp	Thu Sep 05 18:21:56 2024 +0200
@@ -45,12 +45,12 @@
     throw OrthancException(ErrorCode_NotImplemented);  // Not supported
   }
 
-  void BaseDatabaseWrapper::BaseTransaction::GetChanges2(std::list<ServerIndexChange>& target /*out*/,
-                                                         bool& done /*out*/,
-                                                         int64_t since,
-                                                         int64_t to,
-                                                         uint32_t limit,
-                                                         ChangeType filterType)
+  void BaseDatabaseWrapper::BaseTransaction::GetChangesExtended(std::list<ServerIndexChange>& target /*out*/,
+                                                                bool& done /*out*/,
+                                                                int64_t since,
+                                                                int64_t to,
+                                                                uint32_t limit,
+                                                                ChangeType filterType)
   {
     throw OrthancException(ErrorCode_NotImplemented);  // Not supported
   }