starocean999 commented on code in PR #47894:
URL: https://github.com/apache/doris/pull/47894#discussion_r1955477100
##########
fe/fe-core/src/main/java/org/apache/doris/nereids/parser/LogicalPlanBuilder.java:
##########
@@ -5637,5 +5640,59 @@ public LogicalPlan
visitShowQueuedAnalyzeJobs(ShowQueuedAnalyzeJobsContext ctx)
String stateValue = ctx.stateValue == null ? null :
stripQuotes(ctx.stateValue.getText());
return new ShowQueuedAnalyzeJobsCommand(tableName, stateKey,
stateValue);
}
+
+ @Override
+ public LogicalPlan visitDescribeTable(DorisParser.DescribeTableContext
ctx) {
+ String tableName = null;
+ if (ctx.multipartIdentifier() != null) {
Review Comment:
explainCommand multipartIdentifier specifiedPartition? #describeTable
specifiedPartition is missing, you can call visitSpecifiedPartitionContext
to handle specifiedPartition
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]