aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/test/expected/sql-func.c
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2006-08-29 12:24:52 +0000
committerMichael Meskes <meskes@postgresql.org>2006-08-29 12:24:52 +0000
commitb1710339ba2e318cf6af1a50d4256e9fa98e6c8a (patch)
treeb6a8e0e1cd54f153d737beb368a528bfb389ad42 /src/interfaces/ecpg/test/expected/sql-func.c
parentba9f9bf1b103d72196d76646c6fcc71abbdd51f5 (diff)
downloadpostgresql-b1710339ba2e318cf6af1a50d4256e9fa98e6c8a.tar.gz
postgresql-b1710339ba2e318cf6af1a50d4256e9fa98e6c8a.zip
Fixed parser and library to allow empty database names.
Streamlined connection name parsing. Added Joachim's patch to shorten paths before diffing.
Diffstat (limited to 'src/interfaces/ecpg/test/expected/sql-func.c')
-rw-r--r--src/interfaces/ecpg/test/expected/sql-func.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/ecpg/test/expected/sql-func.c b/src/interfaces/ecpg/test/expected/sql-func.c
index 0f3a833bf5c..6f8bf3a17fb 100644
--- a/src/interfaces/ecpg/test/expected/sql-func.c
+++ b/src/interfaces/ecpg/test/expected/sql-func.c
@@ -12,7 +12,7 @@
#include <string.h>
-#line 1 "./../regression.h"
+#line 1 "regression.h"
@@ -73,7 +73,7 @@ if (sqlca.sqlcode < 0) sqlprint();}
#line 30 "func.pgc"
- { ECPGdo(__LINE__, 0, 1, NULL, "insert into My_Table values( 1234 , 'Some random text' )", ECPGt_EOIT, ECPGt_EORT);
+ { ECPGdo(__LINE__, 0, 1, NULL, "insert into My_Table values( 1234 , 'Some random text' ) ", ECPGt_EOIT, ECPGt_EORT);
#line 32 "func.pgc"
if (sqlca.sqlwarn[0] == 'W') sqlprint();
@@ -82,7 +82,7 @@ if (sqlca.sqlwarn[0] == 'W') sqlprint();
if (sqlca.sqlcode < 0) sqlprint();}
#line 32 "func.pgc"
- { ECPGdo(__LINE__, 0, 1, NULL, "insert into My_Table values( 5678 , 'The Quick Brown' )", ECPGt_EOIT, ECPGt_EORT);
+ { ECPGdo(__LINE__, 0, 1, NULL, "insert into My_Table values( 5678 , 'The Quick Brown' ) ", ECPGt_EOIT, ECPGt_EORT);
#line 33 "func.pgc"
if (sqlca.sqlwarn[0] == 'W') sqlprint();