schema progress (does not compile)

This commit is contained in:
2025-12-31 11:56:12 +01:00
parent d104222fdd
commit ab2d39407c
65 changed files with 1355 additions and 922 deletions
+2 -4
View File
@@ -1,12 +1,10 @@
#ifndef MATADOR_QUERY_FIXTURE_HPP
#define MATADOR_QUERY_FIXTURE_HPP
#include "matador/object/repository.hpp"
#include "matador/query/schema.hpp"
#include "matador/sql/connection.hpp"
#include "connection.hpp"
#include <stack>
namespace matador::test {
@@ -22,7 +20,7 @@ public:
protected:
sql::connection db;
std::stack <std::string> tables_to_drop;
object::repository repo;
query::schema repo;
private:
void drop_table_if_exists(const std::string &table_name) const;