This is an automated email from the ASF dual-hosted git repository.

caogaofei pushed a commit to branch count_time
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/count_time by this push:
     new 8f4a71d6bdb fix inputLocations.size() in 
ColumnTransformerVisitorContext
8f4a71d6bdb is described below

commit 8f4a71d6bdb316df288723196852e17cca903271
Author: Beyyes <[email protected]>
AuthorDate: Mon Aug 7 21:33:49 2023 +0800

    fix inputLocations.size() in ColumnTransformerVisitorContext
---
 .../apache/iotdb/db/queryengine/plan/planner/OperatorTreeGenerator.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/planner/OperatorTreeGenerator.java
 
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/planner/OperatorTreeGenerator.java
index f74b4af67d9..e81dd0560dc 100644
--- 
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/planner/OperatorTreeGenerator.java
+++ 
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/planner/OperatorTreeGenerator.java
@@ -1158,7 +1158,7 @@ public class OperatorTreeGenerator extends 
PlanVisitor<Operator, LocalExecutionP
               filterExpressionColumnTransformerMap,
               commonTransformerList,
               filterOutputDataTypes,
-              inputLocations.size());
+              inputLocations.size() - 1);
 
       for (Expression expression : projectExpressions) {
         projectOutputTransformerList.add(

Reply via email to