Kaydet (Commit) 74de1d00 authored tarafından Tamas Bunth's avatar Tamas Bunth Kaydeden (comit) Tamás Bunth

tdf#122437 mysqlc: fix foreign key name query

Correct query of the foreign key constraint name is required for
dropping foreign keys.

Change-Id: Id98b0672ec5a8a06039667a06cb0afd97b3ee205
Reviewed-on: https://gerrit.libreoffice.org/65861
Tested-by: Jenkins
Reviewed-by: 's avatarTamás Bunth <btomi96@gmail.com>
üst a87145d3
......@@ -952,7 +952,7 @@ Reference<XResultSet> SAL_CALL ODatabaseMetaData::getImportedKeys(const Any& /*c
// delete rule
aRow.push_back(makeAny(xRow->getShort(8)));
// foreign key name
aRow.push_back(makeAny(xRow->getShort(9)));
aRow.push_back(makeAny(xRow->getString(9)));
// primary key name
aRow.push_back(makeAny(OUString{})); // TODO
// deferrability
......
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