Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 5f3edde

Browse files
author
Michael Meskes
committed
Added patch by ISHIDA Akio to allow indicators in execute statements.
1 parent 1d2dbf0 commit 5f3edde

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

src/interfaces/ecpg/ChangeLog

+9
Original file line numberDiff line numberDiff line change
@@ -1801,6 +1801,15 @@ Fri May 21 15:17:35 CEST 2004
18011801
- Fixed DEALLOCATE PREPARE to use correct function call
18021802
- Made sure connect statement does not accept single char variable,
18031803
but only strings.
1804+
1805+
Sat May 22 13:11:12 CEST 2004
1806+
1807+
- Added pg_config_paths.h to ecpglib.
1808+
1809+
Thu Jun 17 13:50:06 CEST 2004
1810+
1811+
- Added patch by ISHIDA Akio to allow indicators in execute
1812+
statements.
18041813
- Set pgtypes library version to 1.2.
18051814
- Set ecpg version to 3.2.0.
18061815
- Set compat library version to 1.2.

src/interfaces/ecpg/preproc/preproc.y

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.286 2004/06/11 17:32:39 momjian Exp $ */
1+
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.287 2004/06/17 11:52:25 meskes Exp $ */
22

33
/* Copyright comment */
44
%{
@@ -5223,6 +5223,7 @@ UsingConst: AllConst
52235223
add_variable_to_head(&argsinsert, new_variable($1, ECPGmake_simple_type(ECPGt_const, length), 0), &no_indicator);
52245224
}
52255225
}
5226+
| civarind { $$ = EMPTY; }
52265227
;
52275228

52285229
/*

0 commit comments

Comments
 (0)