8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8aad333 commit f30a1d0Copy full SHA for f30a1d0
src/interfaces/ecpg/preproc/ecpg.trailer
@@ -1,4 +1,4 @@
1
-/* $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 $ */
2
3
statements: /*EMPTY*/
4
| statements statement
@@ -1852,7 +1852,7 @@ ecpg_sconst:
1852
ecpg_xconst: XCONST { $$ = make_name(); } ;
1853
1854
ecpg_ident: IDENT { $$ = make_name(); }
1855
- | CSTRING { $$ = make3_str(make_str("\""), $1, make_str("\"")) }
+ | CSTRING { $$ = make3_str(make_str("\""), $1, make_str("\"")); }
1856
| UIDENT { $$ = $1; }
1857
;
1858
0 commit comments