mirror of
https://github.com/postgres/postgres.git
synced 2025-05-03 22:24:49 +03:00
Add missing semicolon, per grip from Alex Hunsaker.
This commit is contained in:
parent
8aad333f8f
commit
f30a1d0474
@ -1,4 +1,4 @@
|
|||||||
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/ecpg.trailer,v 1.1 2008/11/14 10:03:33 meskes Exp $ */
|
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/ecpg.trailer,v 1.2 2008/11/15 22:18:05 adunstan Exp $ */
|
||||||
|
|
||||||
statements: /*EMPTY*/
|
statements: /*EMPTY*/
|
||||||
| statements statement
|
| statements statement
|
||||||
@ -1852,7 +1852,7 @@ ecpg_sconst:
|
|||||||
ecpg_xconst: XCONST { $$ = make_name(); } ;
|
ecpg_xconst: XCONST { $$ = make_name(); } ;
|
||||||
|
|
||||||
ecpg_ident: IDENT { $$ = make_name(); }
|
ecpg_ident: IDENT { $$ = make_name(); }
|
||||||
| CSTRING { $$ = make3_str(make_str("\""), $1, make_str("\"")) }
|
| CSTRING { $$ = make3_str(make_str("\""), $1, make_str("\"")); }
|
||||||
| UIDENT { $$ = $1; }
|
| UIDENT { $$ = $1; }
|
||||||
;
|
;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user