diff options
author | Michael Meskes <meskes@postgresql.org> | 2018-03-17 17:24:32 +0100 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2018-03-17 18:15:33 +0100 |
commit | e400840b1d92cb6a654c30a6aca68ba31eb8afbb (patch) | |
tree | d0a0d26911c2ced100b9592e8271f25b009592ed /src/interfaces/ecpg/test/expected/compat_oracle-char_array.c | |
parent | e3bdb2d92600ed45bd46aaf48309a436a9628218 (diff) | |
download | postgresql-e400840b1d92cb6a654c30a6aca68ba31eb8afbb.tar.gz postgresql-e400840b1d92cb6a654c30a6aca68ba31eb8afbb.zip |
Fix closing of incorrectly named cursor.
Patch by "Shinoda, Noriyoshi" <noriyoshi.shinoda@hpe.com>
Diffstat (limited to 'src/interfaces/ecpg/test/expected/compat_oracle-char_array.c')
-rw-r--r-- | src/interfaces/ecpg/test/expected/compat_oracle-char_array.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/test/expected/compat_oracle-char_array.c b/src/interfaces/ecpg/test/expected/compat_oracle-char_array.c index a72736f673a..c2ef09e354c 100644 --- a/src/interfaces/ecpg/test/expected/compat_oracle-char_array.c +++ b/src/interfaces/ecpg/test/expected/compat_oracle-char_array.c @@ -178,7 +178,7 @@ if (sqlca.sqlcode < 0) sqlprint();} printf("\"%s\": \"%s\" %d\n", bigstr, shortstr, shstr_ind); } - { ECPGdo(__LINE__, 3, 1, NULL, 0, ECPGst_normal, "close cstr", ECPGt_EOIT, ECPGt_EORT); + { ECPGdo(__LINE__, 3, 1, NULL, 0, ECPGst_normal, "close C", ECPGt_EOIT, ECPGt_EORT); #line 54 "char_array.pgc" if (sqlca.sqlwarn[0] == 'W') warn ( ); @@ -186,7 +186,7 @@ if (sqlca.sqlwarn[0] == 'W') warn ( ); if (sqlca.sqlcode < 0) sqlprint();} #line 54 "char_array.pgc" - + { ECPGdo(__LINE__, 3, 1, NULL, 0, ECPGst_normal, "drop table strdbase", ECPGt_EOIT, ECPGt_EORT); #line 55 "char_array.pgc" |