Commit ac2b9aee authored by Tom Lane's avatar Tom Lane

Synced gram.y and preproc.y.

parent d63571a7
...@@ -3479,8 +3479,13 @@ extract_list: extract_arg FROM a_expr ...@@ -3479,8 +3479,13 @@ extract_list: extract_arg FROM a_expr
{ $$ = EMPTY; } { $$ = EMPTY; }
; ;
/* Allow delimited string SCONST in extract_arg as an SQL extension.
* - thomas 2001-04-12
*/
extract_arg: datetime { $$ = $1; } extract_arg: datetime { $$ = $1; }
| IDENT { $$ = $1; } | SCONST { $$ = $1; }
| IDENT { $$ = $1; }
| TIMEZONE_HOUR { $$ = make_str("timezone_hour"); } | TIMEZONE_HOUR { $$ = make_str("timezone_hour"); }
| TIMEZONE_MINUTE { $$ = make_str("timezone_minute"); } | TIMEZONE_MINUTE { $$ = make_str("timezone_minute"); }
; ;
......
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