Skip to content

Commit f9e69e2

Browse files
committed
Fix typo in Offset
1 parent 09892d9 commit f9e69e2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/sqlgen/duckdb/Connection.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ class SQLGEN_API Connection {
139139
}));
140140

141141
const auto select_from = dynamic::SelectFrom{
142-
.table_or_query = _table, .fields = fields, .limit = dynamic::Limit{0}, .offset = dynamic::Limit{0}};
142+
.table_or_query = _table, .fields = fields, .limit = dynamic::Limit{0}, .offset = dynamic::Offset{0}};
143143

144144
return DuckDBResult::make(to_sql(select_from), conn_)
145145
.transform([&](const auto &_res) {

0 commit comments

Comments
 (0)