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
@@ -3,11 +3,11 @@
#include "matador/sql/backend_provider.hpp"
#include "matador/sql/connection.hpp"
#include "matador/sql/column.hpp"
#include "matador/sql/table.hpp"
#include "matador/query/criteria_evaluator.hpp"
#include "matador/query/query.hpp"
#include "matador/query/column.hpp"
#include "matador/query/table.hpp"
#include "matador/orm/session_query_builder.hpp"
+1 -3
View File
@@ -1,15 +1,13 @@
#include <catch2/catch_test_macros.hpp>
#include "matador/query/generator.hpp"
#include "matador/sql/column.hpp"
#include "matador/query/column.hpp"
#include "../../models/airplane.hpp"
#include "../../models/flight.hpp"
using namespace matador::utils;
using namespace matador::query;
using namespace matador::sql;
using namespace matador::test;
TEST_CASE("Test placeholder generator", "[generator][placeholder]") {
+1 -1
View File
@@ -4,11 +4,11 @@
#include <matador/query/criteria.hpp>
#include <matador/query/query.hpp>
#include "matador/query/table.hpp"
#include "matador/object/attribute_definition_generator.hpp"
#include "matador/sql/connection.hpp"
#include "matador/sql/table.hpp"
#include "matador/utils/placeholder.hpp"
+1 -2
View File
@@ -1,6 +1,7 @@
#include <catch2/catch_test_macros.hpp>
#include "matador/query/generator.hpp"
#include "matador/query/table.hpp"
#include "matador/object/repository.hpp"
@@ -8,9 +9,7 @@
#include "../test/models/order.hpp"
#include "../test/models/book.hpp"
#include "../test/models/author.hpp"
#include "matador/sql/table.hpp"
using namespace matador::sql;
using namespace matador::query;
using namespace matador::object;