comparison PostgreSQL/Plugins/PostgreSQLIndex.cpp @ 532:25cfcb752af6 large-queries

merged find-refactoring -> large-queries
author Alain Mazy <am@orthanc.team>
date Fri, 06 Sep 2024 15:31:33 +0200
parents 9413451fd984 451125122692
children d8ee2f676a3c
comparison
equal deleted inserted replaced
524:48aba35fe64e 532:25cfcb752af6
680 { 680 {
681 // This behavior is implemented in "CreateInstance()", and no 681 // This behavior is implemented in "CreateInstance()", and no
682 // backward compatibility is necessary 682 // backward compatibility is necessary
683 throw Orthanc::OrthancException(Orthanc::ErrorCode_Database); 683 throw Orthanc::OrthancException(Orthanc::ErrorCode_Database);
684 } 684 }
685
686
687 #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 12, 5)
688 bool PostgreSQLIndex::HasFindSupport() const
689 {
690 // TODO-FIND
691 return false;
692 }
693 #endif
694
695
696 #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 12, 5)
697 void PostgreSQLIndex::ExecuteFind(Orthanc::DatabasePluginMessages::TransactionResponse& response,
698 DatabaseManager& manager,
699 const Orthanc::DatabasePluginMessages::Find_Request& request)
700 {
701 // TODO-FIND
702 throw Orthanc::OrthancException(Orthanc::ErrorCode_NotImplemented);
703 }
704 #endif
685 } 705 }