Skip to content
Snippets Groups Projects
Commit 73a86761 authored by Cedric CAFFY's avatar Cedric CAFFY
Browse files

Filtered the DATABASECHANGELOG and the DATABASECHANGELOGLOCK table names in CatalogueMetadataGetter

parent 67b0a776
Branches
Tags
No related merge requests found
......@@ -75,7 +75,9 @@ std::string CatalogueMetadataGetter::getCatalogueVersion(){
}
std::list<std::string> CatalogueMetadataGetter::getTableNames(){
return m_conn.getTableNames();
std::list<std::string> tableNames = m_conn.getTableNames();
removeObjectNameContaining(tableNames,{"DATABASECHANGELOG","DATABASECHANGELOGLOCK"});
return tableNames;
}
std::list<std::string> CatalogueMetadataGetter::getIndexNames(){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment