connectivity/source/drivers/mysqlc/mysqlc_tables.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit ff3720c4747b9b75e3886163bc61e2e58a5aabb5 Author: Julien Nabet <serval2...@yahoo.fr> AuthorDate: Sat Jan 15 09:58:28 2022 +0100 Commit: Julien Nabet <serval2...@yahoo.fr> CommitDate: Sat Jan 15 11:29:50 2022 +0100 Mysql/MariaDB: related:tdf#81430, fix regression create table Change-Id: I8f2983c1d08026ad0cbe796f73e0ff44f917de17 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128458 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2...@yahoo.fr> diff --git a/connectivity/source/drivers/mysqlc/mysqlc_tables.cxx b/connectivity/source/drivers/mysqlc/mysqlc_tables.cxx index 36fb744ee5cc..55baa8bffd79 100644 --- a/connectivity/source/drivers/mysqlc/mysqlc_tables.cxx +++ b/connectivity/source/drivers/mysqlc/mysqlc_tables.cxx @@ -188,7 +188,7 @@ ObjectType Tables::appendObject(const OUString& rName, m_xMetaData->getConnection()->createStatement()->execute(sSql); - return createObject(rName); + return createObject(sSchema + "." + rName); } //----- XDrop -----------------------------------------------------------------