diff options
author | Michael Meskes <meskes@postgresql.org> | 2010-01-29 16:28:13 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2010-01-29 16:28:13 +0000 |
commit | 83fa037b731aa67e7626d143d30d75cae2018af5 (patch) | |
tree | 0493de2597a27fc76fe2728d98d48425df32d132 /src/interfaces/ecpg/test/preproc/outofscope.pgc | |
parent | f18085659685829f4dd79a7a485d0280001f33df (diff) | |
download | postgresql-83fa037b731aa67e7626d143d30d75cae2018af5.tar.gz postgresql-83fa037b731aa67e7626d143d30d75cae2018af5.zip |
Changed ECPG outofscope handling to always print out statements in the same order
so regression testing is possible,
by Zoltan Boszormenyi
Diffstat (limited to 'src/interfaces/ecpg/test/preproc/outofscope.pgc')
-rw-r--r-- | src/interfaces/ecpg/test/preproc/outofscope.pgc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/test/preproc/outofscope.pgc b/src/interfaces/ecpg/test/preproc/outofscope.pgc index 70fb6a6a1b3..12cd79ac77a 100644 --- a/src/interfaces/ecpg/test/preproc/outofscope.pgc +++ b/src/interfaces/ecpg/test/preproc/outofscope.pgc @@ -83,7 +83,6 @@ main (void) strcpy(msg, "insert"); exec sql insert into a1(id, t, d1, d2, c) values (default, 'a', 1.0, 2, 'a'); exec sql insert into a1(id, t, d1, d2, c) values (default, null, null, null, null); - exec sql insert into a1(id, t, d1, d2, c) values (default, '"a"', -1.0, 'nan'::float8, 'a'); exec sql insert into a1(id, t, d1, d2, c) values (default, 'b', 2.0, 3, 'b'); strcpy(msg, "commit"); |