diff options
author | Michael Meskes <meskes@postgresql.org> | 2004-06-17 11:52:25 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2004-06-17 11:52:25 +0000 |
commit | 5f3edded814fc20f74842187a2dd3d9bd1608732 (patch) | |
tree | c5400e8a43a14be1b44c76c5a0622c7f19a3aad1 | |
parent | 1d2dbf07975265d6945eb9f96f42a19ed0eeafb3 (diff) | |
download | postgresql-5f3edded814fc20f74842187a2dd3d9bd1608732.tar.gz postgresql-5f3edded814fc20f74842187a2dd3d9bd1608732.zip |
Added patch by ISHIDA Akio to allow indicators in execute statements.
-rw-r--r-- | src/interfaces/ecpg/ChangeLog | 9 | ||||
-rw-r--r-- | src/interfaces/ecpg/preproc/preproc.y | 3 |
2 files changed, 11 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/ChangeLog b/src/interfaces/ecpg/ChangeLog index f16bf08d820..1c3372193dd 100644 --- a/src/interfaces/ecpg/ChangeLog +++ b/src/interfaces/ecpg/ChangeLog @@ -1801,6 +1801,15 @@ Fri May 21 15:17:35 CEST 2004 - Fixed DEALLOCATE PREPARE to use correct function call - Made sure connect statement does not accept single char variable, but only strings. + +Sat May 22 13:11:12 CEST 2004 + + - Added pg_config_paths.h to ecpglib. + +Thu Jun 17 13:50:06 CEST 2004 + + - Added patch by ISHIDA Akio to allow indicators in execute + statements. - Set pgtypes library version to 1.2. - Set ecpg version to 3.2.0. - Set compat library version to 1.2. diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y index 9b0c01f4f5e..7f03deb0580 100644 --- a/src/interfaces/ecpg/preproc/preproc.y +++ b/src/interfaces/ecpg/preproc/preproc.y @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.286 2004/06/11 17:32:39 momjian Exp $ */ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.287 2004/06/17 11:52:25 meskes Exp $ */ /* Copyright comment */ %{ @@ -5223,6 +5223,7 @@ UsingConst: AllConst add_variable_to_head(&argsinsert, new_variable($1, ECPGmake_simple_type(ECPGt_const, length), 0), &no_indicator); } } + | civarind { $$ = EMPTY; } ; /* |