summaryrefslogtreecommitdiff
path: root/src/pq/test_pq.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pq/test_pq.c')
-rw-r--r--src/pq/test_pq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pq/test_pq.c b/src/pq/test_pq.c
index 260323ef2..2133182d0 100644
--- a/src/pq/test_pq.c
+++ b/src/pq/test_pq.c
@@ -165,7 +165,7 @@ main(int argc,
int ret;
// FIXME: pass valid connect string for tests...
- conn = PQconnectdb ("");
+ conn = PQconnectdb ("postgres:///talercheck");
if (CONNECTION_OK != PQstatus (conn))
{
fprintf (stderr,
@@ -177,7 +177,7 @@ main(int argc,
}
result = PQexec (conn,
- "CREATE TABLE test_pq ("
+ "CREATE TEMPORARY TABLE IF NOT EXISTS test_pq ("
" pub BYTEA NOT NULL"
",sig BYTEA NOT NULL"
",abs_time INT8 NOT NULL"