We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 591d282 commit 5664b7bCopy full SHA for 5664b7b
src/backend/parser/gram.y
@@ -4320,7 +4320,7 @@ SeqOptElem: AS SimpleTypename
4320
;
4321
4322
opt_by: BY
4323
- | /* empty */
+ | /* EMPTY */
4324
4325
4326
NumericOnly:
@@ -5808,7 +5808,7 @@ AlterEnumStmt:
5808
5809
5810
opt_if_not_exists: IF_P NOT EXISTS { $$ = true; }
5811
- | /* empty */ { $$ = false; }
+ | /* EMPTY */ { $$ = false; }
5812
5813
5814
@@ -6555,7 +6555,7 @@ SecLabelStmt:
6555
6556
6557
opt_provider: FOR NonReservedWord_or_Sconst { $$ = $2; }
6558
- | /* empty */ { $$ = NULL; }
+ | /* EMPTY */ { $$ = NULL; }
6559
6560
6561
security_label: Sconst { $$ = $1; }
0 commit comments