From e0d46f96859b33b3f04791028e30bce4f0173567 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Thu, 18 Jan 2024 12:08:53 +0100 Subject: auditordb tabularasa --- src/auditordb/pg_del_reserve_info.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'src/auditordb/pg_del_reserve_info.c') diff --git a/src/auditordb/pg_del_reserve_info.c b/src/auditordb/pg_del_reserve_info.c index 81db98df9..619bd0afa 100644 --- a/src/auditordb/pg_del_reserve_info.c +++ b/src/auditordb/pg_del_reserve_info.c @@ -28,23 +28,20 @@ enum GNUNET_DB_QueryStatus TAH_PG_del_reserve_info (void *cls, - const struct TALER_ReservePublicKeyP *reserve_pub, - const struct TALER_MasterPublicKeyP *master_pub) + const struct TALER_ReservePublicKeyP *reserve_pub) { struct PostgresClosure *pg = cls; struct GNUNET_PQ_QueryParam params[] = { GNUNET_PQ_query_param_auto_from_type (reserve_pub), - GNUNET_PQ_query_param_auto_from_type (master_pub), GNUNET_PQ_query_param_end }; PREPARE (pg, - "auditor_reserves_delete", + "auditor_del_reserve_info", "DELETE" " FROM auditor_reserves" - " WHERE reserve_pub=$1" - " AND master_pub=$2;"); + " WHERE reserve_pub=$1"); return GNUNET_PQ_eval_prepared_non_select (pg->conn, - "auditor_reserves_delete", + "auditor_del_reserve_info", params); } -- cgit v1.2.3