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

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

commit eeaadb49d8ab44197fab256a06321782435e9017
Author: Beyyes <[email protected]>
AuthorDate: Sun Apr 7 12:02:37 2024 +0800

    perfect RelationalModelPlanner
---
 iotdb-core/datanode/pom.xml                                  | 10 +++++++++-
 .../plan/relational/planner/RelationalModelPlanner.java      | 12 ++++++------
 2 files changed, 15 insertions(+), 7 deletions(-)

diff --git a/iotdb-core/datanode/pom.xml b/iotdb-core/datanode/pom.xml
index f6be3f5dcbd..8f4919c8b38 100644
--- a/iotdb-core/datanode/pom.xml
+++ b/iotdb-core/datanode/pom.xml
@@ -528,7 +528,15 @@
                         
<usedDependency>org.glassfish.jersey.inject:jersey-hk2</usedDependency>
                     </usedDependencies>
                 </configuration>
-            
</plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-compiler-plugin</artifactId><configuration><source>8</source><target>8</target></configuration></plugin>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>8</source>
+                    <target>8</target>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
     <profiles>
diff --git 
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/planner/RelationalModelPlanner.java
 
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/planner/RelationalModelPlanner.java
index cfec9c17a28..1970fedc625 100644
--- 
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/planner/RelationalModelPlanner.java
+++ 
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/planner/RelationalModelPlanner.java
@@ -63,12 +63,12 @@ public class RelationalModelPlanner implements IPlanner {
   @Override
   public LogicalQueryPlan doLogicalPlan(IAnalysis analysis, MPPQueryContext 
context) {
     // TODO need implemented by Beyyes
-      try {
-          new LogicalPlanner(context, metadata, null, 
null).plan((Analysis)analysis);
-      } catch (IoTDBException e) {
-          throw new RuntimeException(e);
-      }
-      return null;
+    try {
+      new LogicalPlanner(context, metadata, null, null).plan((Analysis) 
analysis);
+    } catch (IoTDBException e) {
+      throw new RuntimeException(e);
+    }
+    return null;
   }
 
   @Override

Reply via email to