@@ -337,7 +337,7 @@ export class ImpalaSqlParser extends SQLParserBase {
337337 public static readonly RULE_renameView = 28;
338338 public static readonly RULE_alterViewOwner = 29;
339339 public static readonly RULE_renameTable = 30;
340- public static readonly RULE_alterUnSetOrSetViewTblproperties = 31;
340+ public static readonly RULE_alterUnSetOrSetViewTblProperties = 31;
341341 public static readonly RULE_truncateTableStatement = 32;
342342 public static readonly RULE_describeStatement = 33;
343343 public static readonly RULE_computeStatement = 34;
@@ -610,7 +610,7 @@ export class ImpalaSqlParser extends SQLParserBase {
610610 "alterTableOwner", "replaceOrAddColumns", "addSingleColumn", "alterTableNonKuduOrKuduOnly",
611611 "addPartitionByRangeOrValue", "alterFormat", "recoverPartitions",
612612 "dropPartitionByRangeOrValue", "alterView", "renameView", "alterViewOwner",
613- "renameTable", "alterUnSetOrSetViewTblproperties ", "truncateTableStatement",
613+ "renameTable", "alterUnSetOrSetViewTblProperties ", "truncateTableStatement",
614614 "describeStatement", "computeStatement", "computeStats", "computeIncrementalStats",
615615 "dropStatement", "dropSchema", "dropView", "dropTable", "dropIncrementalStats",
616616 "dropFunction", "dropRole", "grantStatement", "grantRole", "grant",
@@ -1930,7 +1930,7 @@ export class ImpalaSqlParser extends SQLParserBase {
19301930 this.enterOuterAlt(localContext, 2);
19311931 {
19321932 this.state = 663;
1933- this.alterUnSetOrSetViewTblproperties ();
1933+ this.alterUnSetOrSetViewTblProperties ();
19341934 }
19351935 break;
19361936 case 3:
@@ -3035,9 +3035,9 @@ export class ImpalaSqlParser extends SQLParserBase {
30353035 }
30363036 return localContext;
30373037 }
3038- public alterUnSetOrSetViewTblproperties (): AlterUnSetOrSetViewTblpropertiesContext {
3039- let localContext = new AlterUnSetOrSetViewTblpropertiesContext (this.context, this.state);
3040- this.enterRule(localContext, 62, ImpalaSqlParser.RULE_alterUnSetOrSetViewTblproperties );
3038+ public alterUnSetOrSetViewTblProperties (): AlterUnSetOrSetViewTblPropertiesContext {
3039+ let localContext = new AlterUnSetOrSetViewTblPropertiesContext (this.context, this.state);
3040+ this.enterRule(localContext, 62, ImpalaSqlParser.RULE_alterUnSetOrSetViewTblProperties );
30413041 let _la: number;
30423042 try {
30433043 this.enterOuterAlt(localContext, 1);
@@ -15118,8 +15118,8 @@ export class AlterStatementContext extends antlr.ParserRuleContext {
1511815118 public alterDatabase(): AlterDatabaseContext | null {
1511915119 return this.getRuleContext(0, AlterDatabaseContext);
1512015120 }
15121- public alterUnSetOrSetViewTblproperties (): AlterUnSetOrSetViewTblpropertiesContext | null {
15122- return this.getRuleContext(0, AlterUnSetOrSetViewTblpropertiesContext );
15121+ public alterUnSetOrSetViewTblProperties (): AlterUnSetOrSetViewTblPropertiesContext | null {
15122+ return this.getRuleContext(0, AlterUnSetOrSetViewTblPropertiesContext );
1512315123 }
1512415124 public renameTable(): RenameTableContext | null {
1512515125 return this.getRuleContext(0, RenameTableContext);
@@ -16153,7 +16153,7 @@ export class RenameTableContext extends antlr.ParserRuleContext {
1615316153}
1615416154
1615516155
16156- export class AlterUnSetOrSetViewTblpropertiesContext extends antlr.ParserRuleContext {
16156+ export class AlterUnSetOrSetViewTblPropertiesContext extends antlr.ParserRuleContext {
1615716157 public _tblProp?: PropertiesContext;
1615816158 public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) {
1615916159 super(parent, invokingState);
@@ -16180,21 +16180,21 @@ export class AlterUnSetOrSetViewTblpropertiesContext extends antlr.ParserRuleCon
1618016180 return this.getRuleContext(0, PropertiesContext)!;
1618116181 }
1618216182 public override get ruleIndex(): number {
16183- return ImpalaSqlParser.RULE_alterUnSetOrSetViewTblproperties ;
16183+ return ImpalaSqlParser.RULE_alterUnSetOrSetViewTblProperties ;
1618416184 }
1618516185 public override enterRule(listener: ImpalaSqlParserListener): void {
16186- if(listener.enterAlterUnSetOrSetViewTblproperties ) {
16187- listener.enterAlterUnSetOrSetViewTblproperties (this);
16186+ if(listener.enterAlterUnSetOrSetViewTblProperties ) {
16187+ listener.enterAlterUnSetOrSetViewTblProperties (this);
1618816188 }
1618916189 }
1619016190 public override exitRule(listener: ImpalaSqlParserListener): void {
16191- if(listener.exitAlterUnSetOrSetViewTblproperties ) {
16192- listener.exitAlterUnSetOrSetViewTblproperties (this);
16191+ if(listener.exitAlterUnSetOrSetViewTblProperties ) {
16192+ listener.exitAlterUnSetOrSetViewTblProperties (this);
1619316193 }
1619416194 }
1619516195 public override accept<Result>(visitor: ImpalaSqlParserVisitor<Result>): Result | null {
16196- if (visitor.visitAlterUnSetOrSetViewTblproperties ) {
16197- return visitor.visitAlterUnSetOrSetViewTblproperties (this);
16196+ if (visitor.visitAlterUnSetOrSetViewTblProperties ) {
16197+ return visitor.visitAlterUnSetOrSetViewTblProperties (this);
1619816198 } else {
1619916199 return visitor.visitChildren(this);
1620016200 }
0 commit comments