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

@ -1051,5 +1051,9 @@ Thu Jan 25 21:14:38 CET 2001
Wed Jan 31 17:11:04 CET 2001
- Added two bug fixes by Christof Petig.
Mon Feb 19 08:25:14 CET 2001
- Synced gram.y and preproc.y.
- Set ecpg version to 2.8.0.
- Set library version to 3.2.0.

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"); }
;