@@ -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;
@@ -608,7 +608,7 @@ export class ImpalaSqlParser extends SQLParserBase {
608608 "alterTableOwner", "replaceOrAddColumns", "addSingleColumn", "alterTableNonKuduOrKuduOnly",
609609 "addPartitionByRangeOrValue", "alterFormat", "recoverPartitions",
610610 "dropPartitionByRangeOrValue", "alterView", "renameView", "alterViewOwner",
611- "renameTable", "alterUnSetOrSetViewTblproperties ", "truncateTableStatement",
611+ "renameTable", "alterUnSetOrSetViewTblProperties ", "truncateTableStatement",
612612 "describeStatement", "computeStatement", "computeStats", "computeIncrementalStats",
613613 "dropStatement", "dropSchema", "dropView", "dropTable", "dropIncrementalStats",
614614 "dropFunction", "dropRole", "grantStatement", "grantRole", "grant",
@@ -1933,7 +1933,7 @@ export class ImpalaSqlParser extends SQLParserBase {
19331933 this.enterOuterAlt(localContext, 2);
19341934 {
19351935 this.state = 662;
1936- this.alterUnSetOrSetViewTblproperties ();
1936+ this.alterUnSetOrSetViewTblProperties ();
19371937 }
19381938 break;
19391939 case 3:
@@ -3038,9 +3038,9 @@ export class ImpalaSqlParser extends SQLParserBase {
30383038 }
30393039 return localContext;
30403040 }
3041- public alterUnSetOrSetViewTblproperties (): AlterUnSetOrSetViewTblpropertiesContext {
3042- let localContext = new AlterUnSetOrSetViewTblpropertiesContext (this.context, this.state);
3043- this.enterRule(localContext, 62, ImpalaSqlParser.RULE_alterUnSetOrSetViewTblproperties );
3041+ public alterUnSetOrSetViewTblProperties (): AlterUnSetOrSetViewTblPropertiesContext {
3042+ let localContext = new AlterUnSetOrSetViewTblPropertiesContext (this.context, this.state);
3043+ this.enterRule(localContext, 62, ImpalaSqlParser.RULE_alterUnSetOrSetViewTblProperties );
30443044 let _la: number;
30453045 try {
30463046 this.enterOuterAlt(localContext, 1);
@@ -15084,8 +15084,8 @@ export class AlterStatementContext extends antlr.ParserRuleContext {
1508415084 public alterDatabase(): AlterDatabaseContext | null {
1508515085 return this.getRuleContext(0, AlterDatabaseContext);
1508615086 }
15087- public alterUnSetOrSetViewTblproperties (): AlterUnSetOrSetViewTblpropertiesContext | null {
15088- return this.getRuleContext(0, AlterUnSetOrSetViewTblpropertiesContext );
15087+ public alterUnSetOrSetViewTblProperties (): AlterUnSetOrSetViewTblPropertiesContext | null {
15088+ return this.getRuleContext(0, AlterUnSetOrSetViewTblPropertiesContext );
1508915089 }
1509015090 public renameTable(): RenameTableContext | null {
1509115091 return this.getRuleContext(0, RenameTableContext);
@@ -16119,7 +16119,7 @@ export class RenameTableContext extends antlr.ParserRuleContext {
1611916119}
1612016120
1612116121
16122- export class AlterUnSetOrSetViewTblpropertiesContext extends antlr.ParserRuleContext {
16122+ export class AlterUnSetOrSetViewTblPropertiesContext extends antlr.ParserRuleContext {
1612316123 public _tblProp?: PropertiesContext;
1612416124 public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) {
1612516125 super(parent, invokingState);
@@ -16146,21 +16146,21 @@ export class AlterUnSetOrSetViewTblpropertiesContext extends antlr.ParserRuleCon
1614616146 return this.getRuleContext(0, PropertiesContext)!;
1614716147 }
1614816148 public override get ruleIndex(): number {
16149- return ImpalaSqlParser.RULE_alterUnSetOrSetViewTblproperties ;
16149+ return ImpalaSqlParser.RULE_alterUnSetOrSetViewTblProperties ;
1615016150 }
1615116151 public override enterRule(listener: ImpalaSqlParserListener): void {
16152- if(listener.enterAlterUnSetOrSetViewTblproperties ) {
16153- listener.enterAlterUnSetOrSetViewTblproperties (this);
16152+ if(listener.enterAlterUnSetOrSetViewTblProperties ) {
16153+ listener.enterAlterUnSetOrSetViewTblProperties (this);
1615416154 }
1615516155 }
1615616156 public override exitRule(listener: ImpalaSqlParserListener): void {
16157- if(listener.exitAlterUnSetOrSetViewTblproperties ) {
16158- listener.exitAlterUnSetOrSetViewTblproperties (this);
16157+ if(listener.exitAlterUnSetOrSetViewTblProperties ) {
16158+ listener.exitAlterUnSetOrSetViewTblProperties (this);
1615916159 }
1616016160 }
1616116161 public override accept<Result>(visitor: ImpalaSqlParserVisitor<Result>): Result | null {
16162- if (visitor.visitAlterUnSetOrSetViewTblproperties ) {
16163- return visitor.visitAlterUnSetOrSetViewTblproperties (this);
16162+ if (visitor.visitAlterUnSetOrSetViewTblProperties ) {
16163+ return visitor.visitAlterUnSetOrSetViewTblProperties (this);
1616416164 } else {
1616516165 return visitor.visitChildren(this);
1616616166 }
0 commit comments