Skip to content

Commit

Permalink
Fix assertion.
Browse files Browse the repository at this point in the history
  • Loading branch information
broneill committed Jul 31, 2024
1 parent 276ca00 commit 85f95a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/cojen/tupl/table/expr/QueryExpr.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public static RelationExpr make(int startPos, int endPos,
for (int i=0; i<projection.size(); i++) {
ProjExpr pe = projection.get(i);
if (pe.isGrouping()) {
assert i > groupBy;
assert i >= groupBy;
break;
}

Expand Down

0 comments on commit 85f95a9

Please sign in to comment.