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
;
opt_by: BY
- | /* empty */
+ | /* EMPTY */
;
NumericOnly:
;
opt_if_not_exists: IF_P NOT EXISTS { $$ = true; }
- | /* empty */ { $$ = false; }
+ | /* EMPTY */ { $$ = false; }
;
;
opt_provider: FOR NonReservedWord_or_Sconst { $$ = $2; }
- | /* empty */ { $$ = NULL; }
+ | /* EMPTY */ { $$ = NULL; }
;
security_label: Sconst { $$ = $1; }