Skip to content

Commit 5664b7b

Browse files
committed
Normalize comment in empty grammar rules
Change lower case /* empty */ to /* EMPTY */ for consistency with the majority. Discussion: https://www.postgresql.org/message-id/flat/e9eed669-e32d-6919-fed4-acc0daea857b%40enterprisedb.com
1 parent 591d282 commit 5664b7b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/parser/gram.y

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4320,7 +4320,7 @@ SeqOptElem: AS SimpleTypename
43204320
;
43214321

43224322
opt_by: BY
4323-
| /* empty */
4323+
| /* EMPTY */
43244324
;
43254325

43264326
NumericOnly:
@@ -5808,7 +5808,7 @@ AlterEnumStmt:
58085808
;
58095809

58105810
opt_if_not_exists: IF_P NOT EXISTS { $$ = true; }
5811-
| /* empty */ { $$ = false; }
5811+
| /* EMPTY */ { $$ = false; }
58125812
;
58135813

58145814

@@ -6555,7 +6555,7 @@ SecLabelStmt:
65556555
;
65566556

65576557
opt_provider: FOR NonReservedWord_or_Sconst { $$ = $2; }
6558-
| /* empty */ { $$ = NULL; }
6558+
| /* EMPTY */ { $$ = NULL; }
65596559
;
65606560

65616561
security_label: Sconst { $$ = $1; }

0 commit comments

Comments
 (0)