comparison PostgreSQL/Plugins/PostgreSQLIndex.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 25cfcb752af6
comparison
equal deleted inserted replaced
519:586b80ea397c 525:451125122692
657 { 657 {
658 // This behavior is implemented in "CreateInstance()", and no 658 // This behavior is implemented in "CreateInstance()", and no
659 // backward compatibility is necessary 659 // backward compatibility is necessary
660 throw Orthanc::OrthancException(Orthanc::ErrorCode_Database); 660 throw Orthanc::OrthancException(Orthanc::ErrorCode_Database);
661 } 661 }
662
663
664 #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 12, 5)
665 bool PostgreSQLIndex::HasFindSupport() const
666 {
667 // TODO-FIND
668 return false;
669 }
670 #endif
671
672
673 #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 12, 5)
674 void PostgreSQLIndex::ExecuteFind(Orthanc::DatabasePluginMessages::TransactionResponse& response,
675 DatabaseManager& manager,
676 const Orthanc::DatabasePluginMessages::Find_Request& request)
677 {
678 // TODO-FIND
679 throw Orthanc::OrthancException(Orthanc::ErrorCode_NotImplemented);
680 }
681 #endif
662 } 682 }