[Libreoffice-commits] core.git: Branch 'libreoffice-6-2' - connectivity/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Tue Jan 29 07:44:00 UTC 2019


 connectivity/source/drivers/mysqlc/mysqlc_databasemetadata.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d09362e5c4a0bdd943fc3df7a20163eb13697b8b
Author:     Julien Nabet <serval2412 at yahoo.fr>
AuthorDate: Thu Jan 17 21:18:36 2019 +0100
Commit:     Lionel Elie Mamane <lionel at mamane.lu>
CommitDate: Tue Jan 29 08:43:40 2019 +0100

    Base/Mysqlc: fix schemas retrieving
    
    Change-Id: Ib0bd600aed3c3394890a199d105aff17cd547200
    (cherry picked from commit dc8b79e378e28a87fdef8b10737a603443043e37)
    Reviewed-on: https://gerrit.libreoffice.org/66563
    Tested-by: Jenkins
    Reviewed-by: Lionel Elie Mamane <lionel at mamane.lu>

diff --git a/connectivity/source/drivers/mysqlc/mysqlc_databasemetadata.cxx b/connectivity/source/drivers/mysqlc/mysqlc_databasemetadata.cxx
index 0da41f5922ea..9acdbc952696 100644
--- a/connectivity/source/drivers/mysqlc/mysqlc_databasemetadata.cxx
+++ b/connectivity/source/drivers/mysqlc/mysqlc_databasemetadata.cxx
@@ -660,7 +660,7 @@ Reference<XResultSet> SAL_CALL ODatabaseMetaData::getSchemas()
             OUString columnStringValue = xRow->getString(i);
             if (i == 1)
             { // TABLE_SCHEM
-                informationSchema = !columnStringValue.equalsIgnoreAsciiCase("information_schema");
+                informationSchema = columnStringValue.equalsIgnoreAsciiCase("information_schema");
             }
             aRow.push_back(makeAny(columnStringValue));
         }


More information about the Libreoffice-commits mailing list