Cpaulyz commented on code in PR #14791:
URL: https://github.com/apache/iotdb/pull/14791#discussion_r1984424985


##########
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/sql/parser/AstBuilder.java:
##########
@@ -2197,6 +2201,122 @@ public Node 
visitParenthesizedRelation(RelationalSqlParser.ParenthesizedRelation
     return visit(ctx.relation());
   }
 
+  @Override
+  public Node visitTableFunctionInvocation(
+      RelationalSqlParser.TableFunctionInvocationContext context) {
+    return visit(context.tableFunctionCall());
+  }
+
+  @Override
+  public Node 
visitTableFunctionCall(RelationalSqlParser.TableFunctionCallContext context) {
+    QualifiedName name = getQualifiedName(context.qualifiedName());
+    List<TableFunctionArgument> arguments =
+        visit(context.tableFunctionArgument(), TableFunctionArgument.class);
+    List<List<QualifiedName>> copartitioning = ImmutableList.of();
+    if (context.COPARTITION() != null) {

Review Comment:
   No, I will delete all related codes about copartition.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to