We're developing project with Spring Boot (JPA-Spring-Data) and Oracle Db. When trying to sort column which includes text, oracle gives me wrong sorting for Turkish Chars. Liquibase is our db migration tool.
This is a script for creation of table's column;
<column name="CONTENT" type="VARCHAR2(255 char)">
<constraints nullable="false"/>
</column>
Entitys property;
@Column(name = "CONTENT", nullable = false)
private String content;
When trying to order by Content; The result looks like below
But for example; İngilizceeee row would be after 'I' letter. There is an issue for Turkish text.

