diff options
author | Michael Meskes | 2003-08-01 11:25:55 +0000 |
---|---|---|
committer | Michael Meskes | 2003-08-01 11:25:55 +0000 |
commit | 0584370728fe7744084e4526d374a7b1ffcfdbc8 (patch) | |
tree | a1d2b2d547962e8a2335614383626951f0c55f62 | |
parent | 7a9c074cba2b65b0759b6c5f5bc5127e9cece75e (diff) |
Added missing TO keyword.
-rw-r--r-- | src/interfaces/ecpg/preproc/preproc.y | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y index cac581d6c79..5aab750345b 100644 --- a/src/interfaces/ecpg/preproc/preproc.y +++ b/src/interfaces/ecpg/preproc/preproc.y @@ -1,4 +1,4 @@ -/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.249 2003/07/18 14:32:56 meskes Exp $ */ +/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.250 2003/08/01 11:25:55 meskes Exp $ */ /* Copyright comment */ %{ @@ -6256,6 +6256,7 @@ c_anything: IDENT { $$ = $1; } | YEAR_P { $$ = make_str("year"); } | CHAR_P { $$ = make_str("char"); } | FLOAT_P { $$ = make_str("float"); } + | TO { $$ = make_str("to"); } | UNION { $$ = make_str("union"); } | VARCHAR { $$ = make_str("varchar"); } | '[' { $$ = make_str("["); } |