diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2022-01-15 12:40:06 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2022-01-15 14:16:55 +0100 |
commit | bcc61497fc954efa7ebb8cef7ad3020d360a813f (patch) | |
tree | 6cd30762d916bea11d00a8c559a8ce2e4ee43d92 /connectivity/source | |
parent | 730b8aba72356bb8ba0066a5517b1224a4f1e232 (diff) |
Mysql/MariaDB: related:tdf#81430, fix regression refresh tables/views manually
Change-Id: Ia17a396a8d55e38ac8ad42fab90c50bfaf96809e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128459
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'connectivity/source')
-rw-r--r-- | connectivity/source/drivers/mysqlc/mysqlc_tables.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/connectivity/source/drivers/mysqlc/mysqlc_tables.cxx b/connectivity/source/drivers/mysqlc/mysqlc_tables.cxx index 55baa8bffd79..8bf019d9bb36 100644 --- a/connectivity/source/drivers/mysqlc/mysqlc_tables.cxx +++ b/connectivity/source/drivers/mysqlc/mysqlc_tables.cxx @@ -9,6 +9,7 @@ #include "mysqlc_table.hxx" #include "mysqlc_tables.hxx" +#include "mysqlc_catalog.hxx" #include <TConnection.hxx> @@ -34,10 +35,7 @@ using namespace ::com::sun::star::sdbcx; using namespace ::com::sun::star::uno; //----- OCollection ----------------------------------------------------------- -void Tables::impl_refresh() -{ - // TODO implement -} +void Tables::impl_refresh() { static_cast<Catalog&>(m_rParent).refreshTables(); } ObjectType Tables::createObject(const OUString& rName) { |