summaryrefslogtreecommitdiff
path: root/src/backenddb/plugin_merchantdb_postgres.c
diff options
context:
space:
mode:
authorÖzgür Kesim <oec-taler@kesim.org>2024-01-23 08:59:03 +0100
committerÖzgür Kesim <oec-taler@kesim.org>2024-01-23 08:59:03 +0100
commit0275aacac6835b2ee0b1b579e93963691ab9e8bd (patch)
tree0e6f631adb816a05916b346b0e1404e3af52b288 /src/backenddb/plugin_merchantdb_postgres.c
parent366a2226abbf43b25ff38a8fec88315863281ab8 (diff)
downloadmerchant-0275aacac6835b2ee0b1b579e93963691ab9e8bd.tar.gz
merchant-0275aacac6835b2ee0b1b579e93963691ab9e8bd.tar.bz2
merchant-0275aacac6835b2ee0b1b579e93963691ab9e8bd.zip
[ci] fixing CI testing, down to 4 out of 15 failing, WIP
Diffstat (limited to 'src/backenddb/plugin_merchantdb_postgres.c')
-rw-r--r--src/backenddb/plugin_merchantdb_postgres.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/backenddb/plugin_merchantdb_postgres.c b/src/backenddb/plugin_merchantdb_postgres.c
index 96b7ac5f..40fb1d19 100644
--- a/src/backenddb/plugin_merchantdb_postgres.c
+++ b/src/backenddb/plugin_merchantdb_postgres.c
@@ -202,9 +202,6 @@ postgres_create_tables (void *cls)
GNUNET_PQ_make_try_execute ("SET search_path TO merchant;"),
GNUNET_PQ_EXECUTE_STATEMENT_END
};
- struct GNUNET_PQ_QueryParam params[] = {
- GNUNET_PQ_query_param_end
- };
enum GNUNET_GenericReturnValue ret;
conn = GNUNET_PQ_connect_with_cfg (pc->cfg,
@@ -214,13 +211,6 @@ postgres_create_tables (void *cls)
NULL);
if (NULL == conn)
return GNUNET_SYSERR;
-#if WTF_OEC
- if (0 >
- GNUNET_PQ_eval_prepared_non_select (conn,
- "create_tables",
- params))
- ret = GNUNET_SYSERR;
-#endif
ret = GNUNET_PQ_exec_sql (conn,
"procedures");
GNUNET_PQ_disconnect (conn);