From 3e75373f6b4998a0c97ee6f735c01f21c0f2576f Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Sat, 30 May 2020 12:14:17 +0200 Subject: return creation_time instead of leaving it uninitizlied, mark problematic missing lines --- src/backenddb/plugin_merchantdb_postgres.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/backenddb/plugin_merchantdb_postgres.c b/src/backenddb/plugin_merchantdb_postgres.c index c58a9476..756071a9 100644 --- a/src/backenddb/plugin_merchantdb_postgres.c +++ b/src/backenddb/plugin_merchantdb_postgres.c @@ -3886,8 +3886,8 @@ lookup_reserves_cb (void *cls, struct GNUNET_PQ_ResultSpec rs[] = { GNUNET_PQ_result_spec_auto_from_type ("reserve_pub", &reserve_pub), - /*GNUNET_PQ_result_spec_absolute_time ("creation_time", - &creation_time),*/ + GNUNET_PQ_result_spec_absolute_time ("creation_time", + &creation_time), GNUNET_PQ_result_spec_absolute_time ("expiration", &expiration_time), TALER_PQ_RESULT_SPEC_AMOUNT ("merchant_initial_balance", @@ -3899,7 +3899,7 @@ lookup_reserves_cb (void *cls, TALER_PQ_RESULT_SPEC_AMOUNT ("tips_picked_up", &pickup_amount), /*GNUNET_PQ_result_spec_auto_from_type ("active", - &active),*/ + &active), FIXME: 'active'*/ GNUNET_PQ_result_spec_end }; @@ -4094,7 +4094,7 @@ postgres_lookup_reserve (void *cls, TALER_PQ_RESULT_SPEC_AMOUNT ("tips_committed", &committed_amount), /*GNUNET_PQ_result_spec_auto_from_type ("active", - &active),*/ + &active), FIXME: active! */ GNUNET_PQ_result_spec_end }; enum GNUNET_DB_QueryStatus qs; @@ -7432,6 +7432,7 @@ libtaler_plugin_merchantdb_postgres_init (void *cls) GNUNET_PQ_make_prepare ("lookup_reserves", "SELECT" " reserve_pub" + ",creation_time" ",expiration" ",merchant_initial_balance_val" ",merchant_initial_balance_frac" -- cgit v1.2.3