We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f3cdee commit 0db44fcCopy full SHA for 0db44fc
1 file changed
include/sqlgen/select_from.hpp
@@ -268,7 +268,7 @@ struct SelectFrom {
268
static_assert(std::is_same_v<LimitType, Nothing>,
269
"You cannot call limit twice.");
270
return SelectFrom<TableOrQueryType, AliasType, FieldsType, JoinsType,
271
- WhereType, GroupByType, OrderByType, Limit, Offset, ToType>{
+ WhereType, GroupByType, OrderByType, LimitType, OffsetType, ToType>{
272
.fields_ = _s.fields_,
273
.from_ = _s.from_,
274
.joins_ = _s.joins_,
@@ -281,7 +281,7 @@ struct SelectFrom {
281
static_assert(std::is_same_v<OffsetType, Nothing>,
282
"You cannot call offset twice.");
283
284
285
286
287
0 commit comments