summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-07-14 17:49:34 +0200
committerChristian Grothoff <christian@grothoff.org>2017-07-14 17:49:34 +0200
commite1aa257ee1f05a6e281f188a6512d6c4946b86bd (patch)
tree05ee41fa191123e63d81fd45fcd1fe314eba6219
parent2c6956f32acc6a9f0c65bc8aac4713d0e3a88928 (diff)
downloadexchange-e1aa257ee1f05a6e281f188a6512d6c4946b86bd.tar.gz
exchange-e1aa257ee1f05a6e281f188a6512d6c4946b86bd.tar.bz2
exchange-e1aa257ee1f05a6e281f188a6512d6c4946b86bd.zip
select on denom_pub_hash instead of denom_pub as the hash is a primary key
-rw-r--r--src/exchangedb/plugin_exchangedb_postgres.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/exchangedb/plugin_exchangedb_postgres.c b/src/exchangedb/plugin_exchangedb_postgres.c
index a1039d1a0..7b84b232e 100644
--- a/src/exchangedb/plugin_exchangedb_postgres.c
+++ b/src/exchangedb/plugin_exchangedb_postgres.c
@@ -504,7 +504,7 @@ postgres_prepare (PGconn *db_conn)
",fee_refund_frac"
",fee_refund_curr" /* must match coin_curr */
" FROM denominations"
- " WHERE denom_pub=$1;",
+ " WHERE denom_pub_hash=$1;",
1),
/* Used in #postgres_insert_denomination_revocation() */
GNUNET_PQ_make_prepare ("denomination_revocation_insert",
@@ -1687,8 +1687,9 @@ postgres_get_denomination_info (void *cls,
struct TALER_EXCHANGEDB_DenominationKeyInformationP *issue)
{
enum GNUNET_DB_QueryStatus qs;
+ struct GNUNET_HashCode dph;
struct GNUNET_PQ_QueryParam params[] = {
- GNUNET_PQ_query_param_rsa_public_key (denom_pub->rsa_public_key),
+ GNUNET_PQ_query_param_auto_from_type (&dph),
GNUNET_PQ_query_param_end
};
struct GNUNET_PQ_ResultSpec rs[] = {
@@ -1717,6 +1718,8 @@ postgres_get_denomination_info (void *cls,
GNUNET_PQ_result_spec_end
};
+ GNUNET_CRYPTO_rsa_public_key_hash (denom_pub->rsa_public_key,
+ &dph);
qs = GNUNET_PQ_eval_prepared_singleton_select (session->conn,
"denomination_get",
params,