gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-exchange] branch master updated: fix SQL error for p


From: gnunet
Subject: [GNUnet-SVN] [taler-exchange] branch master updated: fix SQL error for pq 9.4
Date: Sun, 19 Mar 2017 10:59:57 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new 0f5819d  fix SQL error for pq 9.4
0f5819d is described below

commit 0f5819de588d01a68c4b8c28c65b752cfad890ab
Author: Christian Grothoff <address@hidden>
AuthorDate: Sun Mar 19 10:59:54 2017 +0100

    fix SQL error for pq 9.4
---
 src/exchangedb/plugin_exchangedb_postgres.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/exchangedb/plugin_exchangedb_postgres.c 
b/src/exchangedb/plugin_exchangedb_postgres.c
index 1c93bb7..5bfc116 100644
--- a/src/exchangedb/plugin_exchangedb_postgres.c
+++ b/src/exchangedb/plugin_exchangedb_postgres.c
@@ -911,7 +911,7 @@ postgres_prepare (PGconn *db_conn)
            ",amount_with_fee_curr"
            ",refund_serial_id"
            " FROM refunds"
-           "   JOIN known_coins ON (coin_pub)"
+           "   JOIN known_coins USING (coin_pub)"
            " WHERE refund_serial_id>=$1"
            " ORDER BY refund_serial_id ASC",
            1, NULL);
@@ -1051,7 +1051,7 @@ postgres_prepare (PGconn *db_conn)
            ",done"
            ",deposit_serial_id"
            " FROM deposits"
-           "   JOIN known_coins ON (coin_pub)"
+           "   JOIN known_coins USING (coin_pub)"
            " WHERE ("
            "  (deposit_serial_id>=$1)"
            " )"

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]