compilation fixes and disabled database type char[]

This commit is contained in:
Sascha Kühl
2025-11-21 09:11:14 +01:00
parent 3f3773dc71
commit d8903ed772
5 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ using namespace matador::test;
TEST_CASE_METHOD(QueryFixture, "Test create statement", "[query][statement][create]") {
REQUIRE(repo.attach<matador::test::person>("person"));
auto stmt = query::create()
.table<person>("person"_tab, repo)
.table<person>("person", repo)
.prepare(db);
REQUIRE(stmt);