diff options
author | Michael Meskes <meskes@postgresql.org> | 2008-11-11 11:41:24 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2008-11-11 11:41:24 +0000 |
commit | c7f5c7c128c4a17aa0fb8b787b20a21b180c8c1d (patch) | |
tree | a2cf2be88c468be3271738af0f7243729e823249 /src/interfaces/ecpg/test/expected/preproc-variable.c | |
parent | 3be2448525e9b66205bfcb0ebfeca54137a0cada (diff) | |
download | postgresql-c7f5c7c128c4a17aa0fb8b787b20a21b180c8c1d.tar.gz postgresql-c7f5c7c128c4a17aa0fb8b787b20a21b180c8c1d.zip |
Replaced manually synced preproc.y by the one created by the new script.
Adapted regression test files accordingly.
Diffstat (limited to 'src/interfaces/ecpg/test/expected/preproc-variable.c')
-rw-r--r-- | src/interfaces/ecpg/test/expected/preproc-variable.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/ecpg/test/expected/preproc-variable.c b/src/interfaces/ecpg/test/expected/preproc-variable.c index a196385ed51..64dcd04c97b 100644 --- a/src/interfaces/ecpg/test/expected/preproc-variable.c +++ b/src/interfaces/ecpg/test/expected/preproc-variable.c @@ -42,7 +42,7 @@ typedef char* c; typedef union { int integer; short smallint; } ind; #define BUFFERSIZ 8 -/* exec sql type str is [ BUFFERSIZ ] */ +/* exec sql type str is [ BUFFERSIZ ] */ #line 15 "variable.pgc" @@ -175,7 +175,7 @@ if (sqlca.sqlcode < 0) exit (1);} strcpy(msg, "commit"); - { ECPGtrans(__LINE__, NULL, "commit"); + { ECPGtrans(__LINE__, NULL, "commit "); #line 59 "variable.pgc" if (sqlca.sqlcode < 0) exit (1);} @@ -250,7 +250,7 @@ if (sqlca.sqlcode < 0) exit (1);} strcpy(msg, "commit"); - { ECPGtrans(__LINE__, NULL, "commit"); + { ECPGtrans(__LINE__, NULL, "commit "); #line 94 "variable.pgc" if (sqlca.sqlcode < 0) exit (1);} |