We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22f2ab0 commit 5b33259Copy full SHA for 5b33259
dingo-calcite/src/main/java/io/dingodb/calcite/rule/IndexCompareFilterAggrRule.java
@@ -74,6 +74,9 @@ public void onMatch(RelOptRuleCall call) {
74
return;
75
}
76
TandemPipeCacheOp tandemPipeCacheOp = (TandemPipeCacheOp) dingoScanWithRelOp.getRelOp();
77
+ if (!(tandemPipeCacheOp.getInput() instanceof FilterOp)) {
78
+ return;
79
+ }
80
FilterOp filterOp = (FilterOp) tandemPipeCacheOp.getInput();
81
IndexTable indexTable;
82
if (filterOp.getFilter() instanceof BinaryOpExpr) {
0 commit comments