@@ -337,7 +337,7 @@ export class ImpalaSqlParser extends SQLParserBase {
337
337
public static readonly RULE_renameView = 28;
338
338
public static readonly RULE_alterViewOwner = 29;
339
339
public static readonly RULE_renameTable = 30;
340
- public static readonly RULE_alterUnSetOrSetViewTblproperties = 31;
340
+ public static readonly RULE_alterUnSetOrSetViewTblProperties = 31;
341
341
public static readonly RULE_truncateTableStatement = 32;
342
342
public static readonly RULE_describeStatement = 33;
343
343
public static readonly RULE_computeStatement = 34;
@@ -610,7 +610,7 @@ export class ImpalaSqlParser extends SQLParserBase {
610
610
"alterTableOwner", "replaceOrAddColumns", "addSingleColumn", "alterTableNonKuduOrKuduOnly",
611
611
"addPartitionByRangeOrValue", "alterFormat", "recoverPartitions",
612
612
"dropPartitionByRangeOrValue", "alterView", "renameView", "alterViewOwner",
613
- "renameTable", "alterUnSetOrSetViewTblproperties ", "truncateTableStatement",
613
+ "renameTable", "alterUnSetOrSetViewTblProperties ", "truncateTableStatement",
614
614
"describeStatement", "computeStatement", "computeStats", "computeIncrementalStats",
615
615
"dropStatement", "dropSchema", "dropView", "dropTable", "dropIncrementalStats",
616
616
"dropFunction", "dropRole", "grantStatement", "grantRole", "grant",
@@ -1930,7 +1930,7 @@ export class ImpalaSqlParser extends SQLParserBase {
1930
1930
this.enterOuterAlt(localContext, 2);
1931
1931
{
1932
1932
this.state = 663;
1933
- this.alterUnSetOrSetViewTblproperties ();
1933
+ this.alterUnSetOrSetViewTblProperties ();
1934
1934
}
1935
1935
break;
1936
1936
case 3:
@@ -3035,9 +3035,9 @@ export class ImpalaSqlParser extends SQLParserBase {
3035
3035
}
3036
3036
return localContext;
3037
3037
}
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 );
3041
3041
let _la: number;
3042
3042
try {
3043
3043
this.enterOuterAlt(localContext, 1);
@@ -15118,8 +15118,8 @@ export class AlterStatementContext extends antlr.ParserRuleContext {
15118
15118
public alterDatabase(): AlterDatabaseContext | null {
15119
15119
return this.getRuleContext(0, AlterDatabaseContext);
15120
15120
}
15121
- public alterUnSetOrSetViewTblproperties (): AlterUnSetOrSetViewTblpropertiesContext | null {
15122
- return this.getRuleContext(0, AlterUnSetOrSetViewTblpropertiesContext );
15121
+ public alterUnSetOrSetViewTblProperties (): AlterUnSetOrSetViewTblPropertiesContext | null {
15122
+ return this.getRuleContext(0, AlterUnSetOrSetViewTblPropertiesContext );
15123
15123
}
15124
15124
public renameTable(): RenameTableContext | null {
15125
15125
return this.getRuleContext(0, RenameTableContext);
@@ -16153,7 +16153,7 @@ export class RenameTableContext extends antlr.ParserRuleContext {
16153
16153
}
16154
16154
16155
16155
16156
- export class AlterUnSetOrSetViewTblpropertiesContext extends antlr.ParserRuleContext {
16156
+ export class AlterUnSetOrSetViewTblPropertiesContext extends antlr.ParserRuleContext {
16157
16157
public _tblProp?: PropertiesContext;
16158
16158
public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) {
16159
16159
super(parent, invokingState);
@@ -16180,21 +16180,21 @@ export class AlterUnSetOrSetViewTblpropertiesContext extends antlr.ParserRuleCon
16180
16180
return this.getRuleContext(0, PropertiesContext)!;
16181
16181
}
16182
16182
public override get ruleIndex(): number {
16183
- return ImpalaSqlParser.RULE_alterUnSetOrSetViewTblproperties ;
16183
+ return ImpalaSqlParser.RULE_alterUnSetOrSetViewTblProperties ;
16184
16184
}
16185
16185
public override enterRule(listener: ImpalaSqlParserListener): void {
16186
- if(listener.enterAlterUnSetOrSetViewTblproperties ) {
16187
- listener.enterAlterUnSetOrSetViewTblproperties (this);
16186
+ if(listener.enterAlterUnSetOrSetViewTblProperties ) {
16187
+ listener.enterAlterUnSetOrSetViewTblProperties (this);
16188
16188
}
16189
16189
}
16190
16190
public override exitRule(listener: ImpalaSqlParserListener): void {
16191
- if(listener.exitAlterUnSetOrSetViewTblproperties ) {
16192
- listener.exitAlterUnSetOrSetViewTblproperties (this);
16191
+ if(listener.exitAlterUnSetOrSetViewTblProperties ) {
16192
+ listener.exitAlterUnSetOrSetViewTblProperties (this);
16193
16193
}
16194
16194
}
16195
16195
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);
16198
16198
} else {
16199
16199
return visitor.visitChildren(this);
16200
16200
}
0 commit comments