Details
Description
Currently when using QueryBuilder, we allow to specify locale for UNICODE collation BUT we don't have a way to do that when using SQL++.
QueryBuilder Sample:
QueryBuilder.select(SelectResult.property("string")) .from(DataSource.database(baseTestDb)) .orderBy(Ordering.expression(Expression.property("string") .collate(Collation.unicode()) |
.setLocale("se") |
There is no standard syntax for this as well. We probably need to come up with one such as
`COLLATE UNICODE_<LOCALE>`