moved column and table class from namespace sql to query

This commit is contained in:
Sascha Kühl
2025-11-18 16:27:38 +01:00
parent 7242dc2612
commit fb4bc03da0
79 changed files with 626 additions and 496 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
#define QUERY_QUERY_DATA_HPP
#include "matador/object/attribute_definition.hpp"
#include "matador/sql/table.hpp"
#include "matador/query/table.hpp"
#include "matador/utils/types.hpp"
@@ -35,7 +35,7 @@ struct query_context {
sql_command command{};
std::string command_name{};
std::string schema_name{};
sql::table table{""};
std::string table_name{};
std::vector<object::attribute_definition> prototype{};
std::vector<std::string> result_vars{};
std::vector<std::string> bind_vars{};