mirror of
https://github.com/corda/corda.git
synced 2024-12-18 20:47:57 +00:00
Fixed incorrect reference to column "issuer_key" in cash selection SQL for Postgres. (#2870)
This commit is contained in:
parent
975b81c2c4
commit
5677179504
@ -43,7 +43,7 @@ class CashSelectionPostgreSQLImpl : AbstractCashSelection() {
|
||||
(if (notary != null)
|
||||
" AND vs.notary_name = ?" else "") +
|
||||
(if (onlyFromIssuerParties.isNotEmpty())
|
||||
" AND ccs.issuer_key = ANY (?)" else "") +
|
||||
" AND ccs.issuer_key_hash = ANY (?)" else "") +
|
||||
(if (withIssuerRefs.isNotEmpty())
|
||||
" AND ccs.issuer_ref = ANY (?)" else "") +
|
||||
""")
|
||||
|
Loading…
Reference in New Issue
Block a user