summaryrefslogtreecommitdiff
path: root/src/backenddb/plugin_merchantdb_postgres.c
diff options
context:
space:
mode:
authorÖzgür Kesim <oec-taler@kesim.org>2024-01-20 15:43:13 +0100
committerÖzgür Kesim <oec-taler@kesim.org>2024-01-20 15:43:13 +0100
commitf110c48ec37c4913a51cea6ce521ec1289bfab2b (patch)
tree1199fce3128e2b77fb455e934e170e1629b2e99d /src/backenddb/plugin_merchantdb_postgres.c
parent9d290499b50775ec4791ac2809666ea7694b63be (diff)
downloadmerchant-f110c48ec37c4913a51cea6ce521ec1289bfab2b.tar.gz
merchant-f110c48ec37c4913a51cea6ce521ec1289bfab2b.tar.bz2
merchant-f110c48ec37c4913a51cea6ce521ec1289bfab2b.zip
[ci] fixing CI testing, WIP
Diffstat (limited to 'src/backenddb/plugin_merchantdb_postgres.c')
-rw-r--r--src/backenddb/plugin_merchantdb_postgres.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/backenddb/plugin_merchantdb_postgres.c b/src/backenddb/plugin_merchantdb_postgres.c
index 40fb1d19..87951745 100644
--- a/src/backenddb/plugin_merchantdb_postgres.c
+++ b/src/backenddb/plugin_merchantdb_postgres.c
@@ -211,6 +211,11 @@ postgres_create_tables (void *cls)
NULL);
if (NULL == conn)
return GNUNET_SYSERR;
+ if (0 >
+ GNUNET_PQ_eval_prepared_non_select (conn,
+ "create_tables",
+ NULL))
+ ret = GNUNET_SYSERR;
ret = GNUNET_PQ_exec_sql (conn,
"procedures");
GNUNET_PQ_disconnect (conn);