# HG changeset patch # User am@osimis.io # Date 1531924041 -7200 # Node ID 71eca9b0442a1108b98eb78b2a285b0a26f91e4a # Parent 842d4bf9524e46808d18f67c73d097d17fdd4a97 fix diff -r 842d4bf9524e -r 71eca9b0442a MySQL/Plugins/MySQLIndex.cpp --- a/MySQL/Plugins/MySQLIndex.cpp Wed Jul 18 13:39:48 2018 +0200 +++ b/MySQL/Plugins/MySQLIndex.cpp Wed Jul 18 16:27:21 2018 +0200 @@ -105,7 +105,7 @@ if (!LookupGlobalIntegerProperty(version, *db, t, Orthanc::GlobalProperty_DatabaseSchemaVersion) || version != 6) { - LOG(ERROR) << "PostgreSQL plugin is incompatible with database schema version: " << version; + LOG(ERROR) << "MySQL plugin is incompatible with database schema version: " << version; throw Orthanc::OrthancException(Orthanc::ErrorCode_Database); } @@ -118,7 +118,7 @@ if (revision != 1) { - LOG(ERROR) << "PostgreSQL plugin is incompatible with database schema revision: " << revision; + LOG(ERROR) << "MySQL plugin is incompatible with database schema revision: " << revision; throw Orthanc::OrthancException(Orthanc::ErrorCode_Database); }