diff options
author | Michael Meskes <meskes@postgresql.org> | 2007-08-14 10:32:47 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2007-08-14 10:32:47 +0000 |
commit | aa130f5c4290da72cb7ddbaf190f5eda8548af6f (patch) | |
tree | f87edb2362612d809837e2bfe4605580425358db /src/interfaces/ecpg/test/expected/connect-test3.c | |
parent | 146242fc9cb1394460a3674e7df09fc195fbd0bb (diff) | |
download | postgresql-aa130f5c4290da72cb7ddbaf190f5eda8548af6f.tar.gz postgresql-aa130f5c4290da72cb7ddbaf190f5eda8548af6f.zip |
Fixed compiler warning for enum handling
Diffstat (limited to 'src/interfaces/ecpg/test/expected/connect-test3.c')
-rw-r--r-- | src/interfaces/ecpg/test/expected/connect-test3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/test/expected/connect-test3.c b/src/interfaces/ecpg/test/expected/connect-test3.c index ad142fd2437..0202cc46bb2 100644 --- a/src/interfaces/ecpg/test/expected/connect-test3.c +++ b/src/interfaces/ecpg/test/expected/connect-test3.c @@ -55,7 +55,7 @@ main(void) /* this selects from "second" which was opened last */ - { ECPGdo(__LINE__, 0, 1, NULL, 0, 0, "select current_database () ", ECPGt_EOIT, + { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "select current_database () ", ECPGt_EOIT, ECPGt_char,(res),(long)200,(long)1,(200)*sizeof(char), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT);} #line 27 "test3.pgc" @@ -65,7 +65,7 @@ main(void) { ECPGdisconnect(__LINE__, "CURRENT");} #line 30 "test3.pgc" - { ECPGdo(__LINE__, 0, 1, NULL, 0, 0, "select current_database () ", ECPGt_EOIT, + { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "select current_database () ", ECPGt_EOIT, ECPGt_char,(res),(long)200,(long)1,(200)*sizeof(char), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT);} #line 31 "test3.pgc" |