# HG changeset patch # User Alain Mazy # Date 1747664778 -7200 # Node ID a40b6b48dbcdba3b8c7a2c1bcc42c26590acc88d # Parent 917629011a867df1065887a819372ebc0d4c5b72# Parent 1975d5f63b346cab1d26db62abe17ffb29c5da65 merged default -> attach-custom-data diff -r 917629011a86 -r a40b6b48dbcd MySQL/Plugins/IndexPlugin.cpp --- a/MySQL/Plugins/IndexPlugin.cpp Mon May 19 16:12:25 2025 +0200 +++ b/MySQL/Plugins/IndexPlugin.cpp Mon May 19 16:26:18 2025 +0200 @@ -31,6 +31,7 @@ #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 12, 0) # include +# include #endif #define ORTHANC_PLUGIN_NAME "mysql-index" diff -r 917629011a86 -r a40b6b48dbcd Odbc/Plugins/IndexPlugin.cpp --- a/Odbc/Plugins/IndexPlugin.cpp Mon May 19 16:12:25 2025 +0200 +++ b/Odbc/Plugins/IndexPlugin.cpp Mon May 19 16:26:18 2025 +0200 @@ -47,6 +47,7 @@ #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 12, 0) # include +# include #endif diff -r 917629011a86 -r a40b6b48dbcd PostgreSQL/Plugins/IndexPlugin.cpp --- a/PostgreSQL/Plugins/IndexPlugin.cpp Mon May 19 16:12:25 2025 +0200 +++ b/PostgreSQL/Plugins/IndexPlugin.cpp Mon May 19 16:26:18 2025 +0200 @@ -29,6 +29,7 @@ #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 12, 0) # include +# include #endif #define ORTHANC_PLUGIN_NAME "postgresql-index" diff -r 917629011a86 -r a40b6b48dbcd PostgreSQL/Plugins/SQL/PrepareIndex.sql --- a/PostgreSQL/Plugins/SQL/PrepareIndex.sql Mon May 19 16:12:25 2025 +0200 +++ b/PostgreSQL/Plugins/SQL/PrepareIndex.sql Mon May 19 16:26:18 2025 +0200 @@ -53,7 +53,7 @@ uncompressedHash VARCHAR(40), compressedHash VARCHAR(40), revision INTEGER, - customData TEXT, -- new in schema rev 4 + customData TEXT, -- new in schema rev 5 PRIMARY KEY(id, fileType) ); diff -r 917629011a86 -r a40b6b48dbcd SQLite/Plugins/IndexPlugin.cpp --- a/SQLite/Plugins/IndexPlugin.cpp Mon May 19 16:12:25 2025 +0200 +++ b/SQLite/Plugins/IndexPlugin.cpp Mon May 19 16:26:18 2025 +0200 @@ -28,6 +28,7 @@ #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 12, 0) # include +# include #endif #define ORTHANC_PLUGIN_NAME "sqlite-index"