mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2025-03-11 14:20:54 +01:00
Fixed #348
This commit is contained in:
parent
c49ae0048f
commit
56fa9dbeac
@ -64,9 +64,9 @@ public class IPsTable extends UserIDTable {
|
||||
}
|
||||
|
||||
private List<String> getStringList(UUID uuid, String column) throws SQLException {
|
||||
String sql = Select.from(tableName, column)
|
||||
.where(columnUserID + "=" + usersTable.statementSelectID)
|
||||
.toString();
|
||||
String sql = "SELECT DISTINCT " + column + " FROM " + tableName +
|
||||
" WHERE " + columnUserID + "=" + usersTable.statementSelectID;
|
||||
|
||||
|
||||
return query(new QueryStatement<List<String>>(sql, 100) {
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user