Skip to content

Commit

Permalink
fix sql system param
Browse files Browse the repository at this point in the history
  • Loading branch information
MathisSenicourt committed Mar 12, 2024
1 parent 4d8a6bf commit 4412dad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ public AnswerList<String> readDistinctValuesByCriteria(String system, String sea
}

query.append(searchSQL);
query.append(" order by ").append(columnName).append(" asc");
query.append(" order by `").append(columnName).append("` asc");

// Debug message on SQL.
if (LOG.isDebugEnabled()) {
Expand Down

0 comments on commit 4412dad

Please sign in to comment.