snuyanzin commented on code in PR #27381:
URL: https://github.com/apache/flink/pull/27381#discussion_r2659787556
##########
flink-table/flink-table-planner/src/main/java/org/apache/flink/table/planner/operations/SqlNodeToOperationConversion.java:
##########
@@ -315,8 +264,6 @@ private static Optional<Operation> convertValidatedSqlNode(
} else if (validated instanceof SqlCompileAndExecutePlan) {
return Optional.of(
converter.convertCompileAndExecutePlan((SqlCompileAndExecutePlan) validated));
- } else if (validated instanceof SqlAnalyzeTable) {
- return Optional.of(converter.convertAnalyzeTable((SqlAnalyzeTable)
validated));
Review Comment:
all of these moved into separate converter classes
it allowed to make this class less than 1k lines
--
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]