Skip to content

Commit

Permalink
build: update Calcite to 1.37 (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
ViggoC authored May 31, 2024
1 parent 9a0de46 commit 5389a86
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ com.github.vlsi.vlsi-release-plugins.version=1.74

# library version
antlr.version=4.13.1
calcite.version=1.36.0
calcite.version=1.37.0
guava.version=32.1.3-jre
immutables.version=2.10.1
jackson.version=2.16.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
import org.apache.calcite.rex.RexDynamicParam;
import org.apache.calcite.rex.RexFieldAccess;
import org.apache.calcite.rex.RexInputRef;
import org.apache.calcite.rex.RexLambda;
import org.apache.calcite.rex.RexLambdaRef;
import org.apache.calcite.rex.RexLiteral;
import org.apache.calcite.rex.RexLocalRef;
import org.apache.calcite.rex.RexNode;
Expand Down Expand Up @@ -193,4 +195,14 @@ public Expression visitLocalRef(RexLocalRef localRef) {
public Expression visitPatternFieldRef(RexPatternFieldRef fieldRef) {
throw new UnsupportedOperationException("RexPatternFieldRef not supported");
}

@Override
public Expression visitLambda(RexLambda rexLambda) {
throw new UnsupportedOperationException("RexLambda not supported");
}

@Override
public Expression visitLambdaRef(RexLambdaRef rexLambdaRef) {
throw new UnsupportedOperationException("RexLambdaRef not supported");
}
}

0 comments on commit 5389a86

Please sign in to comment.