diff options
| author | Michael Meskes <meskes@postgresql.org> | 2000-03-03 09:56:03 +0000 |
|---|---|---|
| committer | Michael Meskes <meskes@postgresql.org> | 2000-03-03 09:56:03 +0000 |
| commit | 3a81a1a4623b2d56f25443e57ae243e13a44cad2 (patch) | |
| tree | 180b337c8b1aeca38fd19cbd6e29bf9a80174a08 /src/interfaces/ecpg/preproc/preproc.y | |
| parent | 85b2875a3a00c69a9ba194a93f731384a59015ca (diff) | |
*** empty log message ***
Diffstat (limited to 'src/interfaces/ecpg/preproc/preproc.y')
| -rw-r--r-- | src/interfaces/ecpg/preproc/preproc.y | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y index d3abd002286..88591f831bc 100644 --- a/src/interfaces/ecpg/preproc/preproc.y +++ b/src/interfaces/ecpg/preproc/preproc.y @@ -5086,6 +5086,7 @@ c_anything: IDENT { $$ = $1; } | CSTRING { $$ = make3_str(make_str("\""), $1, make_str("\"")); } | Iconst { $$ = $1; } | Fconst { $$ = $1; } + | Sconst { $$ = $1; } | '*' { $$ = make_str("*"); } | '+' { $$ = make_str("+"); } | '-' { $$ = make_str("-"); } @@ -5112,8 +5113,6 @@ c_anything: IDENT { $$ = $1; } | VARCHAR { $$ = make_str("varchar"); } | '[' { $$ = make_str("["); } | ']' { $$ = make_str("]"); } -/* | '(' { $$ = make_str("("); } - | ')' { $$ = make_str(")"); }*/ | '=' { $$ = make_str("="); } blockstart : '{' { |
