Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
There is a breaking change in ArangoDB 3.12 that the default locale changes from en_US to en_US_POSIX. cruddl has some logic that relies on the order of values according to the non-POSIX locale. Therefore, we need to set it using LOCALE in the tests. Consider this: for a in ["Scal", "PART", "part"] sort a return a cruddl assumes it to be [ "PART", "part", "Scal" ] but in 3.12 without locale set (so en_US_POSIX) is used, it would be: [ "PART", "Scal", "part" ]
- Loading branch information