comparison MySQL/Plugins/MySQLIndex.cpp @ 454:f4244c7e2725 improve-delete

merge pg-transactions -> improve-delete
author Alain Mazy <am@osimis.io>
date Mon, 22 Jan 2024 10:00:28 +0100
parents 95c413106a66 d700c8f9fc24
children d0dd95ff0662
comparison
equal deleted inserted replaced
424:95c413106a66 454:f4244c7e2725
235 235
236 // Reconfiguration of "Metadata" from TEXT type (up to 64KB) 236 // Reconfiguration of "Metadata" from TEXT type (up to 64KB)
237 // to the LONGTEXT type (up to 4GB). This might be important 237 // to the LONGTEXT type (up to 4GB). This might be important
238 // for applications such as the Osimis Web viewer that stores 238 // for applications such as the Osimis Web viewer that stores
239 // large amount of metadata. 239 // large amount of metadata.
240 // http://book.orthanc-server.com/faq/features.html#central-registry-of-metadata-and-attachments 240 // https://orthanc.uclouvain.be/book/faq/features.html#central-registry-of-metadata-and-attachments
241 t.GetDatabaseTransaction().ExecuteMultiLines("ALTER TABLE Metadata MODIFY value LONGTEXT"); 241 t.GetDatabaseTransaction().ExecuteMultiLines("ALTER TABLE Metadata MODIFY value LONGTEXT");
242 242
243 revision = 4; 243 revision = 4;
244 SetGlobalIntegerProperty(manager, MISSING_SERVER_IDENTIFIER, Orthanc::GlobalProperty_DatabasePatchLevel, revision); 244 SetGlobalIntegerProperty(manager, MISSING_SERVER_IDENTIFIER, Orthanc::GlobalProperty_DatabasePatchLevel, revision);
245 245