comparison SQLite/Plugins/SQLiteIndex.cpp @ 525:451125122692 find-refactoring

created branch find-refactoring
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 19 Jul 2024 13:59:27 +0200
parents 54d518dcd74a
children f18e46d7dbf8
comparison
equal deleted inserted replaced
519:586b80ea397c 525:451125122692
257 //LOG(ERROR) << value.Format(); 257 //LOG(ERROR) << value.Format();
258 throw Orthanc::OrthancException(Orthanc::ErrorCode_InternalError); 258 throw Orthanc::OrthancException(Orthanc::ErrorCode_InternalError);
259 } 259 }
260 } 260 }
261 } 261 }
262
263
264 #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 12, 5)
265 bool SQLiteIndex::HasFindSupport() const
266 {
267 // TODO-FIND
268 return false;
269 }
270 #endif
271
272
273 #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 12, 5)
274 void SQLiteIndex::ExecuteFind(Orthanc::DatabasePluginMessages::TransactionResponse& response,
275 DatabaseManager& manager,
276 const Orthanc::DatabasePluginMessages::Find_Request& request)
277 {
278 // TODO-FIND
279 throw Orthanc::OrthancException(Orthanc::ErrorCode_NotImplemented);
280 }
281 #endif
262 } 282 }