Added the ability to add subqueries in select_from (#39)

This commit is contained in:
Dr. Patrick Urbanke (劉自成)
2025-08-09 00:36:53 +02:00
committed by GitHub
parent ad1cae049b
commit f536efbde9
19 changed files with 894 additions and 172 deletions

View File

@@ -16,7 +16,7 @@ struct Person {
double age;
};
TEST(postgres, test_unique) {
TEST(sqlite, test_unique) {
const auto people = std::vector<Person>(
{Person{
.id = 0, .first_name = "Homer", .last_name = "Simpson", .age = 45},