Fixed ordering, to keep consistency with existing approach.

This commit is contained in:
CalDescent 2023-05-07 12:46:01 +01:00
parent c0f29f848f
commit 865d3d8aff

View File

@ -552,7 +552,7 @@ public class HSQLDBArbitraryRepository implements ArbitraryRepository {
} }
} }
sql.append(" ORDER BY created_when"); sql.append(" ORDER BY name COLLATE SQL_TEXT_UCC_NO_PAD");
if (reverse != null && reverse) { if (reverse != null && reverse) {
sql.append(" DESC"); sql.append(" DESC");