Skip to content

Commit

Permalink
build: update to Calcite 1.38.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vbarua committed Feb 12, 2025
1 parent 2c85210 commit 567cc90
Show file tree
Hide file tree
Showing 2 changed files with 3 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.37.0
calcite.version=1.38.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 @@ -179,6 +179,8 @@ public Rel visit(org.apache.calcite.rel.core.Join join) {
case FULL -> Join.JoinType.OUTER;
case SEMI -> Join.JoinType.SEMI;
case ANTI -> Join.JoinType.ANTI;
case ASOF -> throw new RuntimeException("ASOF join not supported");
case LEFT_ASOF -> throw new RuntimeException("LEFT ASOF join not supported");
};

if (joinType == Join.JoinType.INNER
Expand Down

0 comments on commit 567cc90

Please sign in to comment.