Skip to content
Snippets Groups Projects
Commit 6c77e1aa authored by Giuseppe Lo Presti's avatar Giuseppe Lo Presti
Browse files

Added the UsageStats table to the hard-coded list of objects to be dropped....

Added the UsageStats table to the hard-coded list of objects to be dropped. This should fix the CI system tests
parent dc111ed1
No related branches found
No related tags found
No related merge requests found
......@@ -147,7 +147,8 @@ void DropSchemaCmd::dropSqliteCatalogueSchema(rdbms::Conn &conn) {
"TAPE_POOL",
"LOGICAL_LIBRARY",
"MOUNT_POLICY",
"ACTIVITIES_WEIGHTS"};
"ACTIVITIES_WEIGHTS",
"USAGESTATS"};
dropDatabaseTables(conn, tablesToDrop);
} catch(exception::Exception &ex) {
throw exception::Exception(std::string(__FUNCTION__) + " failed: " + ex.getMessage().str());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment