diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-07-30 12:32:50 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-07-30 12:32:50 +0200 |
commit | 04e4c185002020e69130acfd243dbf971f5af348 (patch) | |
tree | 0969adc211d61dd978134e2267698f9f381db507 /src/pq/test_pq.c | |
parent | 35011bf29b4576b8c63b71538557da1fd3ae657a (diff) |
-remove _tuple suffix
Diffstat (limited to 'src/pq/test_pq.c')
-rw-r--r-- | src/pq/test_pq.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pq/test_pq.c b/src/pq/test_pq.c index 71a2d5a00..03308ba14 100644 --- a/src/pq/test_pq.c +++ b/src/pq/test_pq.c @@ -86,8 +86,8 @@ run_queries (struct GNUNET_PQ_Context *conn) json_integer (42))); { struct GNUNET_PQ_QueryParam params_insert[] = { - TALER_PQ_query_param_amount_tuple (conn, - &tamount), + TALER_PQ_query_param_amount (conn, + &tamount), TALER_PQ_query_param_json (json), TALER_PQ_query_param_array_amount (3, aamount, @@ -119,9 +119,9 @@ run_queries (struct GNUNET_PQ_Context *conn) GNUNET_PQ_query_param_end }; struct GNUNET_PQ_ResultSpec results_select[] = { - TALER_PQ_result_spec_amount_tuple ("tamount", - "EUR", - &tamount2), + TALER_PQ_result_spec_amount ("tamount", + "EUR", + &tamount2), TALER_PQ_result_spec_json ("json", &json2), TALER_PQ_result_spec_array_amount (conn, |