Added support for joins (#25)

This commit is contained in:
Dr. Patrick Urbanke (劉自成)
2025-07-15 08:55:34 +02:00
committed by GitHub
parent f95156df77
commit b283ccf388
48 changed files with 2108 additions and 308 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ TEST(postgres, test_is_null_dry) {
order_by("first_name"_c.desc()));
const std::string expected =
R"(SELECT "id", "first_name", "last_name", "age" FROM "Person" WHERE "age" IS NULL ORDER BY "first_name" DESC;)";
R"(SELECT "id", "first_name", "last_name", "age" FROM "Person" WHERE "age" IS NULL ORDER BY "first_name" DESC)";
EXPECT_EQ(sql, expected);
}