1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

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
This commit is contained in:
Peter Eisentraut
2020-11-16 11:54:52 +01:00
parent 591d282e8d
commit 5664b7be5b

View File

@ -4320,7 +4320,7 @@ SeqOptElem: AS SimpleTypename
;
opt_by: BY
| /* empty */
| /* EMPTY */
;
NumericOnly:
@ -5808,7 +5808,7 @@ AlterEnumStmt:
;
opt_if_not_exists: IF_P NOT EXISTS { $$ = true; }
| /* empty */ { $$ = false; }
| /* EMPTY */ { $$ = false; }
;
@ -6555,7 +6555,7 @@ SecLabelStmt:
;
opt_provider: FOR NonReservedWord_or_Sconst { $$ = $2; }
| /* empty */ { $$ = NULL; }
| /* EMPTY */ { $$ = NULL; }
;
security_label: Sconst { $$ = $1; }