enabled backend tests for postgres (doesn't compile)

This commit is contained in:
2025-02-11 22:22:06 +01:00
parent 55f9f8cf67
commit 42acaf24ce
4 changed files with 11 additions and 9 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
#ifndef MATADOR_SESSION_FIXTURE_HPP
#define MATADOR_SESSION_FIXTURE_HPP
#include "matador/sql/session.hpp"
#include "matador/orm/session.hpp"
#include "connection.hpp"
@@ -16,8 +16,8 @@ public:
protected:
sql::connection_pool<sql::connection> pool;
sql::session ses;
std::stack <std::string> tables_to_drop;
orm::session ses;
private:
void drop_table_if_exists(const std::string &table_name) const;