You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ca...@apache.org on 2023/04/21 09:47:17 UTC

[iotdb] branch for_tsbs updated: change the invoking of new PartialPath(pathStr) to new PartialPath(pathStr,false) in class StatementGenerator

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

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


The following commit(s) were added to refs/heads/for_tsbs by this push:
     new 57359e59ad change the invoking of new PartialPath(pathStr) to new PartialPath(pathStr,false) in class StatementGenerator
57359e59ad is described below

commit 57359e59adb763175cbf35460c1308f1274a7f15
Author: Beyyes <cg...@foxmail.com>
AuthorDate: Fri Apr 21 17:46:59 2023 +0800

    change the invoking of new PartialPath(pathStr) to new PartialPath(pathStr,false) in class StatementGenerator
---
 .../java/org/apache/iotdb/db/mpp/plan/parser/StatementGenerator.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/src/main/java/org/apache/iotdb/db/mpp/plan/parser/StatementGenerator.java b/server/src/main/java/org/apache/iotdb/db/mpp/plan/parser/StatementGenerator.java
index 7f3d1fb435..4bef61f1a0 100644
--- a/server/src/main/java/org/apache/iotdb/db/mpp/plan/parser/StatementGenerator.java
+++ b/server/src/main/java/org/apache/iotdb/db/mpp/plan/parser/StatementGenerator.java
@@ -212,7 +212,7 @@ public class StatementGenerator {
     SelectComponent selectComponent = new SelectComponent(zoneId);
     List<PartialPath> selectPaths = new ArrayList<>();
     for (String pathStr : req.getPaths()) {
-      selectPaths.add(new PartialPath(pathStr));
+      selectPaths.add(new PartialPath(pathStr, false));
     }
     List<TAggregationType> aggregations = req.getAggregations();
     for (int i = 0; i < aggregations.size(); i++) {