schema creation progress

This commit is contained in:
2025-12-05 07:32:59 +01:00
parent d2f1bc0b8e
commit 98da0884f1
12 changed files with 122 additions and 117 deletions
+4 -5
View File
@@ -5,13 +5,12 @@
namespace matador::test {
SessionFixture::SessionFixture()
: pool(connection::dns, 4), ses({bus, pool}) {}
: pool(connection::dns, 4)
, ses({bus, pool}) {}
SessionFixture::~SessionFixture() {
while (!tables_to_drop.empty()) {
drop_table_if_exists(tables_to_drop.top());
tables_to_drop.pop();
}
const auto result = ses.drop_schema();
REQUIRE(result.is_ok());
}
void SessionFixture::drop_table_if_exists(const std::string &table_name) const {