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 17dc173 commit 192dd84Copy full SHA for 192dd84
src/interfaces/ecpg/preproc/ecpg.trailer
@@ -1,4 +1,4 @@
1
-/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/ecpg.trailer,v 1.2 2008/11/15 22:18:05 adunstan Exp $ */
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/ecpg.trailer,v 1.3 2008/12/12 12:14:43 meskes Exp $ */
2
3
statements: /*EMPTY*/
4
| statements statement
@@ -984,7 +984,11 @@ UsingValue: UsingConst
984
;
985
986
UsingConst: Iconst { $$ = $1; }
987
+ | '+' Iconst { $$ = cat_str(2, make_str("+"), $2); }
988
+ | '-' Iconst { $$ = cat_str(2, make_str("-"), $2); }
989
| ecpg_fconst { $$ = $1; }
990
+ | '+' ecpg_fconst { $$ = cat_str(2, make_str("+"), $2); }
991
+ | '-' ecpg_fconst { $$ = cat_str(2, make_str("-"), $2); }
992
| ecpg_sconst { $$ = $1; }
993
| ecpg_bconst { $$ = $1; }
994
| ecpg_xconst { $$ = $1; }
0 commit comments