I found the Scala slick package's "sortBy" method is not case sensitive. Ex:
after implementing the following command: q.sortBy(columnMap("name").desc)
, I got:
TestingIsFun, testing foo1, Testing foo,
Is this expected behavior? How can I make it case sensitive? Thx.