Kaydet (Commit) dc8b79e3 authored tarafından Julien Nabet's avatar Julien Nabet

Base/Mysqlc: fix schemas retrieving

Change-Id: Ib0bd600aed3c3394890a199d105aff17cd547200
Reviewed-on: https://gerrit.libreoffice.org/66554Reviewed-by: 's avatarLionel Elie Mamane <lionel@mamane.lu>
Tested-by: Jenkins
üst b8e450a5
...@@ -660,7 +660,7 @@ Reference<XResultSet> SAL_CALL ODatabaseMetaData::getSchemas() ...@@ -660,7 +660,7 @@ Reference<XResultSet> SAL_CALL ODatabaseMetaData::getSchemas()
OUString columnStringValue = xRow->getString(i); OUString columnStringValue = xRow->getString(i);
if (i == 1) if (i == 1)
{ // TABLE_SCHEM { // TABLE_SCHEM
informationSchema = !columnStringValue.equalsIgnoreAsciiCase("information_schema"); informationSchema = columnStringValue.equalsIgnoreAsciiCase("information_schema");
} }
aRow.push_back(makeAny(columnStringValue)); aRow.push_back(makeAny(columnStringValue));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment