You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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"
]
0 commit comments