moved column and table class from namespace sql to query
This commit is contained in:
@@ -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,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]") {
|
||||
|
||||
@@ -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,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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user