File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/interfaces/ecpg/preproc Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 1
- /* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/ecpg.trailer,v 1.2 2008/11/15 22:18:05 adunstan Exp $ */
1
+ /* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/ecpg.trailer,v 1.3 2008/12/12 12:14:43 meskes Exp $ */
2
2
3
3
statements: /*EMPTY*/
4
4
| statements statement
@@ -984,7 +984,11 @@ UsingValue: UsingConst
984
984
;
985
985
986
986
UsingConst: Iconst { $$ = $1; }
987
+ | '+' Iconst { $$ = cat_str(2, make_str("+"), $2); }
988
+ | '-' Iconst { $$ = cat_str(2, make_str("-"), $2); }
987
989
| ecpg_fconst { $$ = $1; }
990
+ | '+' ecpg_fconst { $$ = cat_str(2, make_str("+"), $2); }
991
+ | '-' ecpg_fconst { $$ = cat_str(2, make_str("-"), $2); }
988
992
| ecpg_sconst { $$ = $1; }
989
993
| ecpg_bconst { $$ = $1; }
990
994
| ecpg_xconst { $$ = $1; }
You can’t perform that action at this time.
0 commit comments