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/compat_oracle/char_array.pgc | |
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/compat_oracle/char_array.pgc')
-rw-r--r-- | src/interfaces/ecpg/test/compat_oracle/char_array.pgc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/test/compat_oracle/char_array.pgc b/src/interfaces/ecpg/test/compat_oracle/char_array.pgc index 5b5d0bb37b9..8c33b18b7c8 100644 --- a/src/interfaces/ecpg/test/compat_oracle/char_array.pgc +++ b/src/interfaces/ecpg/test/compat_oracle/char_array.pgc @@ -51,7 +51,7 @@ int main() { printf("\"%s\": \"%s\" %d\n", bigstr, shortstr, shstr_ind); } - EXEC SQL close cstr; + EXEC SQL CLOSE C; EXEC SQL DROP TABLE strdbase; printf("\nGOOD-BYE!!\n\n"); |