Commit 5664b7be authored by Peter Eisentraut's avatar Peter Eisentraut

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
parent 591d282e
...@@ -4320,7 +4320,7 @@ SeqOptElem: AS SimpleTypename ...@@ -4320,7 +4320,7 @@ SeqOptElem: AS SimpleTypename
; ;
opt_by: BY opt_by: BY
| /* empty */ | /* EMPTY */
; ;
NumericOnly: NumericOnly:
...@@ -5808,7 +5808,7 @@ AlterEnumStmt: ...@@ -5808,7 +5808,7 @@ AlterEnumStmt:
; ;
opt_if_not_exists: IF_P NOT EXISTS { $$ = true; } opt_if_not_exists: IF_P NOT EXISTS { $$ = true; }
| /* empty */ { $$ = false; } | /* EMPTY */ { $$ = false; }
; ;
...@@ -6555,7 +6555,7 @@ SecLabelStmt: ...@@ -6555,7 +6555,7 @@ SecLabelStmt:
; ;
opt_provider: FOR NonReservedWord_or_Sconst { $$ = $2; } opt_provider: FOR NonReservedWord_or_Sconst { $$ = $2; }
| /* empty */ { $$ = NULL; } | /* EMPTY */ { $$ = NULL; }
; ;
security_label: Sconst { $$ = $1; } security_label: Sconst { $$ = $1; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment