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
@@ -146,7 +146,7 @@ getQuery(Wt::Dbo::Session& session,
if (!clusterIds.empty())
oss << " GROUP BY t.id HAVING COUNT(*) = " << clusterIds.size();
oss << " ORDER BY t.name";
oss << " ORDER BY t.name COLLATE NOCASE";
Wt::Dbo::Query<Track::pointer> query = session.query<Track::pointer>( oss.str() );