logger fixes
This commit is contained in:
@@ -31,7 +31,7 @@ using namespace matador::query;
|
||||
using namespace matador::utils;
|
||||
using namespace matador::sql;
|
||||
using namespace matador::test;
|
||||
using namespace matador::query::meta;
|
||||
using namespace matador::query::meta;
|
||||
|
||||
TEST_CASE("Create sql query data for entity with eager has one", "[query][entity][builder]") {
|
||||
using namespace matador::test;
|
||||
@@ -331,7 +331,7 @@ TEST_CASE("Create sql query data for entity with eager many to many (inverse par
|
||||
REQUIRE(cond == R"("t01"."id" = ?)");
|
||||
}
|
||||
|
||||
TEST_CASE("Test eager relationship", "[session][eager]") {
|
||||
TEST_CASE("Test eager relationship", "[query][entity][builder]") {
|
||||
using namespace matador::test;
|
||||
backend_provider::instance().register_backend("noop", std::make_unique<orm::test_backend_service>());
|
||||
connection db("noop://noop.db");
|
||||
|
||||
@@ -249,8 +249,8 @@ TEST_CASE_METHOD(QueryFixture, "Test create, insert and select a blob column", "
|
||||
TEST_CASE_METHOD(QueryFixture, "Test select statement with join_left", "[query][statement][join_left]") {
|
||||
const auto ap = table("airplane").as("ap");
|
||||
const auto f = table("flight").as("f");
|
||||
const class matador::query::table_column col1 = {&f, "airplane_id"};
|
||||
const class matador::query::table_column col2 = {&ap, "id"};
|
||||
const table_column col1 = {&f, "airplane_id"};
|
||||
const table_column col2 = {&ap, "id"};
|
||||
const auto result = query::select({"f.id", "ap.brand", "f.pilot_name"})
|
||||
.from(table{"flight"}.as("f"))
|
||||
.join_left(table{"airplane"}.as("ap"))
|
||||
|
||||
Reference in New Issue
Block a user