@@ -622,7 +622,7 @@ export class FlinkSqlParser extends SQLParserBase {
622
622
public static readonly RULE_dropConstraint = 61;
623
623
public static readonly RULE_addUnique = 62;
624
624
public static readonly RULE_notForced = 63;
625
- public static readonly RULE_alertView = 64;
625
+ public static readonly RULE_alterView = 64;
626
626
public static readonly RULE_alterDatabase = 65;
627
627
public static readonly RULE_alterFunction = 66;
628
628
public static readonly RULE_dropCatalog = 67;
@@ -975,7 +975,7 @@ export class FlinkSqlParser extends SQLParserBase {
975
975
"likeDefinition", "likeOption", "createCatalog", "createDatabase",
976
976
"createView", "createFunction", "usingClause", "jarFileName", "alterTable",
977
977
"renameDefinition", "setKeyValueDefinition", "addConstraint", "dropConstraint",
978
- "addUnique", "notForced", "alertView ", "alterDatabase", "alterFunction",
978
+ "addUnique", "notForced", "alterView ", "alterDatabase", "alterFunction",
979
979
"dropCatalog", "dropTable", "dropDatabase", "dropView", "dropFunction",
980
980
"insertStatement", "insertSimpleStatement", "insertPartitionDefinition",
981
981
"valuesDefinition", "valuesRowDefinition", "insertMulStatementCompatibility",
@@ -1315,7 +1315,7 @@ export class FlinkSqlParser extends SQLParserBase {
1315
1315
this.enterOuterAlt(localContext, 7);
1316
1316
{
1317
1317
this.state = 413;
1318
- this.alertView ();
1318
+ this.alterView ();
1319
1319
}
1320
1320
break;
1321
1321
case 8:
@@ -4457,9 +4457,9 @@ export class FlinkSqlParser extends SQLParserBase {
4457
4457
}
4458
4458
return localContext;
4459
4459
}
4460
- public alertView (): AlertViewContext {
4461
- let localContext = new AlertViewContext (this.context, this.state);
4462
- this.enterRule(localContext, 128, FlinkSqlParser.RULE_alertView );
4460
+ public alterView (): AlterViewContext {
4461
+ let localContext = new AlterViewContext (this.context, this.state);
4462
+ this.enterRule(localContext, 128, FlinkSqlParser.RULE_alterView );
4463
4463
try {
4464
4464
this.enterOuterAlt(localContext, 1);
4465
4465
{
@@ -12777,8 +12777,8 @@ export class DdlStatementContext extends antlr.ParserRuleContext {
12777
12777
public alterTable(): AlterTableContext | null {
12778
12778
return this.getRuleContext(0, AlterTableContext);
12779
12779
}
12780
- public alertView (): AlertViewContext | null {
12781
- return this.getRuleContext(0, AlertViewContext );
12780
+ public alterView (): AlterViewContext | null {
12781
+ return this.getRuleContext(0, AlterViewContext );
12782
12782
}
12783
12783
public alterDatabase(): AlterDatabaseContext | null {
12784
12784
return this.getRuleContext(0, AlterDatabaseContext);
@@ -15555,7 +15555,7 @@ export class NotForcedContext extends antlr.ParserRuleContext {
15555
15555
}
15556
15556
15557
15557
15558
- export class AlertViewContext extends antlr.ParserRuleContext {
15558
+ export class AlterViewContext extends antlr.ParserRuleContext {
15559
15559
public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) {
15560
15560
super(parent, invokingState);
15561
15561
}
@@ -15578,21 +15578,21 @@ export class AlertViewContext extends antlr.ParserRuleContext {
15578
15578
return this.getRuleContext(0, QueryStatementContext);
15579
15579
}
15580
15580
public override get ruleIndex(): number {
15581
- return FlinkSqlParser.RULE_alertView ;
15581
+ return FlinkSqlParser.RULE_alterView ;
15582
15582
}
15583
15583
public override enterRule(listener: FlinkSqlParserListener): void {
15584
- if(listener.enterAlertView ) {
15585
- listener.enterAlertView (this);
15584
+ if(listener.enterAlterView ) {
15585
+ listener.enterAlterView (this);
15586
15586
}
15587
15587
}
15588
15588
public override exitRule(listener: FlinkSqlParserListener): void {
15589
- if(listener.exitAlertView ) {
15590
- listener.exitAlertView (this);
15589
+ if(listener.exitAlterView ) {
15590
+ listener.exitAlterView (this);
15591
15591
}
15592
15592
}
15593
15593
public override accept<Result>(visitor: FlinkSqlParserVisitor<Result>): Result | null {
15594
- if (visitor.visitAlertView ) {
15595
- return visitor.visitAlertView (this);
15594
+ if (visitor.visitAlterView ) {
15595
+ return visitor.visitAlterView (this);
15596
15596
} else {
15597
15597
return visitor.visitChildren(this);
15598
15598
}
0 commit comments