diff --git a/fe/fe-core/src/main/antlr4/org/apache/doris/nereids/DorisParser.g4 b/fe/fe-core/src/main/antlr4/org/apache/doris/nereids/DorisParser.g4 index 211776f1bce721..f300e7d07c53d8 100644 --- a/fe/fe-core/src/main/antlr4/org/apache/doris/nereids/DorisParser.g4 +++ b/fe/fe-core/src/main/antlr4/org/apache/doris/nereids/DorisParser.g4 @@ -60,7 +60,6 @@ statementBase | supportedShowStatement #supportedShowStatementAlias | supportedLoadStatement #supportedLoadStatementAlias | supportedRecoverStatement #supportedRecoverStatementAlias - | supportedLoadStatement #supportedLoadfStatementAlias | unsupportedStatement #unsupported ; @@ -238,6 +237,7 @@ supportedShowStatement supportedLoadStatement : SYNC #sync + | createRoutineLoad ; unsupportedOtherStatement @@ -352,10 +352,6 @@ unsupportedShowStatement | SHOW WARM UP JOB wildWhere? #showWarmUpJob ; -supportedLoadStatement - : createRoutineLoad - ; - createRoutineLoad : CREATE ROUTINE LOAD label=multipartIdentifier (ON table=identifier)? (WITH (APPEND | DELETE | MERGE))?