1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-24 00:23:06 +03:00

Synced gram.y and preproc.y.

This commit is contained in:
Michael Meskes
2001-02-19 07:30:20 +00:00
parent 87117f5d9e
commit 826dc14d8f
2 changed files with 5 additions and 0 deletions

View File

@@ -3479,6 +3479,7 @@ extract_list: extract_arg FROM a_expr
;
extract_arg: datetime { $$ = $1; }
| IDENT { $$ = $1; }
| TIMEZONE_HOUR { $$ = make_str("timezone_hour"); }
| TIMEZONE_MINUTE { $$ = make_str("timezone_minute"); }
;