]> granicus.if.org Git - postgresql/commitdiff
Fixed some typos in ECPG regression test suite that resulted in regression test failu...
authorMichael Meskes <meskes@postgresql.org>
Wed, 3 Feb 2010 13:56:27 +0000 (13:56 +0000)
committerMichael Meskes <meskes@postgresql.org>
Wed, 3 Feb 2010 13:56:27 +0000 (13:56 +0000)
By Zoltán Böszörményi.

src/interfaces/ecpg/test/expected/pgtypeslib-nan_test.c
src/interfaces/ecpg/test/expected/pgtypeslib-nan_test.stderr
src/interfaces/ecpg/test/pgtypeslib/nan_test.pgc

index f42fea3a35b241c7caf583de9fe45e82c863ffc2..b698ccfb6e52fd07ae63553061d19186adeec1a6 100644 (file)
@@ -66,7 +66,7 @@ if (sqlca.sqlcode < 0) sqlprint ( );}
 if (sqlca.sqlcode < 0) sqlprint ( );}
 #line 24 "nan_test.pgc"
 
-       { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "insert into nantest1 ( id , d ) values ( 1 , 'nan' :: float8 ) , ( 2 , 'inf' :: float8 ) , ( 3 , '-inf' :: float8 )", ECPGt_EOIT, ECPGt_EORT);
+       { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "insert into nantest1 ( id , d ) values ( 1 , 'nan' :: float8 ) , ( 2 , 'infinity' :: float8 ) , ( 3 , '-infinity' :: float8 )", ECPGt_EOIT, ECPGt_EORT);
 #line 25 "nan_test.pgc"
 
 if (sqlca.sqlcode < 0) sqlprint ( );}
index cb87b53f76d81c0056898e67251ae38a8b241d84..279af67b94ea4551ad612c104237e5ff54bdfb8f 100644 (file)
@@ -8,7 +8,7 @@
 [NO_PID]: sqlca: code: 0, state: 00000
 [NO_PID]: ecpg_execute on line 24: OK: CREATE TABLE
 [NO_PID]: sqlca: code: 0, state: 00000
-[NO_PID]: ecpg_execute on line 25: query: insert into nantest1 ( id , d ) values ( 1 , 'nan' :: float8 ) , ( 2 , 'inf' :: float8 ) , ( 3 , '-inf' :: float8 ); with 0 parameter(s) on connection regress1
+[NO_PID]: ecpg_execute on line 25: query: insert into nantest1 ( id , d ) values ( 1 , 'nan' :: float8 ) , ( 2 , 'infinity' :: float8 ) , ( 3 , '-infinity' :: float8 ); with 0 parameter(s) on connection regress1
 [NO_PID]: sqlca: code: 0, state: 00000
 [NO_PID]: ecpg_execute on line 25: using PQexec
 [NO_PID]: sqlca: code: 0, state: 00000
index d1793ef42d6dee2619ac493adbc869750697a9a5..597699099d7f10e067cea90576240f1be8e4b0d0 100644 (file)
@@ -22,7 +22,7 @@ main(void)
        exec sql connect to REGRESSDB1;
 
        exec sql create table nantest1 (id int4, d float8);
-       exec sql insert into nantest1 (id, d) values (1, 'nan'::float8), (2, 'inf'::float8), (3, '-inf'::float8);
+       exec sql insert into nantest1 (id, d) values (1, 'nan'::float8), (2, 'infinity'::float8), (3, '-infinity'::float8);
 
        exec sql declare cur cursor for select id, d, d from nantest1;
        exec sql open cur;