mirror of
https://github.com/getml/sqlgen.git
synced 2026-01-04 08:30:30 -06:00
Refactor iterators to make sure we can use them for DuckDB (#60)
This commit is contained in:
committed by
GitHub
parent
4e98b9c0aa
commit
3769f50501
@@ -19,9 +19,6 @@ struct Person {
|
||||
};
|
||||
|
||||
TEST(postgres, test_range_select_from) {
|
||||
static_assert(std::ranges::input_range<sqlgen::Range<Person>>,
|
||||
"Must be an input range.");
|
||||
|
||||
const auto people1 = std::vector<Person>(
|
||||
{Person{
|
||||
.id = 0, .first_name = "Homer", .last_name = "Simpson", .age = 45},
|
||||
|
||||
Reference in New Issue
Block a user