Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
twalthr committed Jan 13, 2025
1 parent 65f00b1 commit ba823ac
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1203,7 +1203,7 @@ private void substituteSubQuery(Blackboard bb, SubQuery subQuery) {
if (!config.isExpand()) {
return;
}
// fall through
// fall through
case MULTISET_VALUE_CONSTRUCTOR:
rel = convertMultisets(ImmutableList.of(subQuery.node), bb);
subQuery.expr = bb.register(rel, JoinRelType.INNER);
Expand Down Expand Up @@ -2113,9 +2113,9 @@ private void findSubQueries(
}
if (node instanceof SqlCall) {
switch (kind) {
// Do no change logic for AND, IN and NOT IN expressions;
// but do change logic for OR, NOT and others;
// EXISTS was handled already.
// Do no change logic for AND, IN and NOT IN expressions;
// but do change logic for OR, NOT and others;
// EXISTS was handled already.
case AND:
case IN:
case NOT_IN:
Expand Down Expand Up @@ -2246,7 +2246,7 @@ private RexNode convertOver(Blackboard bb, SqlNode node) {
switch (aggCall.getKind()) {
case IGNORE_NULLS:
ignoreNulls = true;
// fall through
// fall through
case RESPECT_NULLS:
aggCall = aggCall.operand(0);
break;
Expand Down Expand Up @@ -5536,7 +5536,7 @@ public RexNode convertExpression(SqlNode expr) {
if (config.isExpand()) {
throw new RuntimeException(kind + " is only supported if expand = false");
}
// fall through
// fall through
case CURSOR:
case IN:
case NOT_IN:
Expand Down Expand Up @@ -6166,7 +6166,7 @@ private void translateAgg(
return;
case IGNORE_NULLS:
ignoreNulls = true;
// fall through
// fall through
case RESPECT_NULLS:
translateAgg(
call.operand(0),
Expand Down Expand Up @@ -6247,8 +6247,8 @@ private void translateAgg(
call2, filter, distinctList, orderList, ignoreNulls, outerCall);
return;
}
// "ARRAY_AGG" and "ARRAY_CONCAT_AGG" without "ORDER BY"
// are handled normally; fall through.
// "ARRAY_AGG" and "ARRAY_CONCAT_AGG" without "ORDER BY"
// are handled normally; fall through.

default:
break;
Expand Down

0 comments on commit ba823ac

Please sign in to comment.