mirror of
https://github.com/Qortal/qortal.git
synced 2025-04-19 01:25:54 +00:00
Specify table name in query, to avoid potential ambiguity with indexes.
This commit is contained in:
parent
eecd37d6bc
commit
e44b38819e
@ -412,7 +412,7 @@ public class HSQLDBArbitraryRepository implements ArbitraryRepository {
|
||||
"title, description, category, tag1, tag2, tag3, tag4, tag5 " +
|
||||
"FROM ArbitraryResourcesCache " +
|
||||
"LEFT JOIN ArbitraryMetadataCache USING (service, name, identifier) " +
|
||||
"WHERE service = ? AND name = ?");
|
||||
"WHERE ArbitraryResourcesCache.service = ? AND ArbitraryResourcesCache.name = ?");
|
||||
|
||||
bindParams.add(service.value);
|
||||
bindParams.add(name);
|
||||
|
Loading…
x
Reference in New Issue
Block a user