aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2004-06-17 11:52:59 +0000
committerMichael Meskes <meskes@postgresql.org>2004-06-17 11:52:59 +0000
commitf9589d4acbd49ee1df3585dbf50a457d7ddddc5c (patch)
tree3b69f6155ad578a5b1c0c8ea0f06e28c8415aa11
parentd9a44efc25b5f4bdee965e2d53d903ecaeb6a81b (diff)
downloadpostgresql-f9589d4acbd49ee1df3585dbf50a457d7ddddc5c.tar.gz
postgresql-f9589d4acbd49ee1df3585dbf50a457d7ddddc5c.zip
Added patch by ISHIDA Akio to allow indicators in execute statements.
-rw-r--r--src/interfaces/ecpg/preproc/preproc.y3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y
index 050268d0820..51fa961b0d0 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.263.2.15 2004/06/11 17:32:55 momjian Exp $ */
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.263.2.16 2004/06/17 11:52:59 meskes Exp $ */
/* Copyright comment */
%{
@@ -5301,6 +5301,7 @@ UsingConst: AllConst
add_variable_to_head(&argsinsert, new_variable($1, ECPGmake_simple_type(ECPGt_const, length), 0), &no_indicator);
}
}
+ | civarind { $$ = EMPTY; }
;
/*