Made the sort case insensitive

This commit is contained in:
emeric
2018-09-24 13:08:39 +02:00
parent 87f1f1a13d
commit 9a019aaf3c
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -119,7 +119,7 @@ getQuery(Wt::Dbo::Session& session,
if (!clusterIds.empty())
oss << " GROUP BY t.id HAVING COUNT(*) = " << clusterIds.size();
oss << " ORDER BY r.name";
oss << " ORDER BY r.name COLLATE NOCASE";
Wt::Dbo::Query<Release::pointer> query = session.query<Release::pointer>( oss.str() );