Mercurial > hg > orthanc
changeset 5865:083dac252b01 find-refactoring tip
SQLite: correct HasExtendedFind in Capabilities
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Wed, 06 Nov 2024 08:51:02 +0100 |
parents | a8cf4c659e9c |
children | |
files | OrthancServer/Sources/Database/SQLiteDatabaseWrapper.cpp |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/OrthancServer/Sources/Database/SQLiteDatabaseWrapper.cpp Tue Nov 05 23:06:55 2024 +0100 +++ b/OrthancServer/Sources/Database/SQLiteDatabaseWrapper.cpp Wed Nov 06 08:51:02 2024 +0100 @@ -2131,7 +2131,7 @@ dbCapabilities_.SetFlushToDisk(true); dbCapabilities_.SetLabelsSupport(true); dbCapabilities_.SetHasExtendedChanges(true); - dbCapabilities_.SetHasFindSupport(true); + dbCapabilities_.SetHasFindSupport(HasIntegratedFind()); db_.Open(path); } @@ -2145,7 +2145,7 @@ dbCapabilities_.SetFlushToDisk(true); dbCapabilities_.SetLabelsSupport(true); dbCapabilities_.SetHasExtendedChanges(true); - dbCapabilities_.SetHasFindSupport(true); + dbCapabilities_.SetHasFindSupport(HasIntegratedFind()); db_.OpenInMemory(); }