This is an automated email from the ASF dual-hosted git repository.
jackietien pushed a commit to branch ty/EnhanceInPredicate
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/ty/EnhanceInPredicate by this
push:
new 2c4c3e03876 fix CI
2c4c3e03876 is described below
commit 2c4c3e03876a026d32732a21c1f2a57c56dc0079
Author: JackieTien97 <[email protected]>
AuthorDate: Tue Aug 27 12:07:24 2024 +0800
fix CI
---
.../analyzer/predicate/PredicateCombineIntoTableScanChecker.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/analyzer/predicate/PredicateCombineIntoTableScanChecker.java
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/analyzer/predicate/PredicateCombineIntoTableScanChecker.java
index f80aa3ac691..579f1562876 100644
---
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/analyzer/predicate/PredicateCombineIntoTableScanChecker.java
+++
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/analyzer/predicate/PredicateCombineIntoTableScanChecker.java
@@ -75,8 +75,8 @@ public class PredicateCombineIntoTableScanChecker extends
PredicateVisitor<Boole
}
public static Boolean isInListAllLiteral(InPredicate node) {
- if (node.getValue() instanceof InListExpression) {
- List<Expression> values = ((InListExpression)
node.getValue()).getValues();
+ if (node.getValueList() instanceof InListExpression) {
+ List<Expression> values = ((InListExpression)
node.getValueList()).getValues();
for (Expression value : values) {
if (!(value instanceof Literal)) {
return Boolean.FALSE;