- Issue created by @tdroden
- ๐จ๐ฆCanada tdroden Calgary, Alberta
We use Composer so adding a patch file for easier local testing.
- Merge request !10909Update query result sorting to use case insensitive string comparison โ (Open) created by Unnamed author
- ๐ฎ๐ณIndia hetal.solanki
@tdroden
I have review MR !10909 in Drupal Core 11.x-dev and it's working for me.
So i am moving this issue to RTBC.
Thank you!!
- ๐ฌ๐งUnited Kingdom oily Greater London
Work is needed. Test coverage is required. I have edited the issue summary removing unnecessary text. But further update is required. Added tags for these things.
- ๐จ๐ฆCanada tdroden Calgary, Alberta
@oily I have updated the test steps in the original description. I walked through these steps using simplytest.me and was able to produce the screen capture. Please let me know if further clarification is required.
- ๐ฌ๐งUnited Kingdom oily Greater London
@tdroden Looks good. We need to fork from the 11.x-dev branch. Any changes to 10.x will be backported from 11.x-dev. I am not certain that this will need a PHPUNIT test. I am removing the tags and changing to 'Needs review'. The reviewer will hopefully decide if PHPUnit test coverage is needed.
- ๐ฌ๐งUnited Kingdom oily Greater London
Created an 11.x branch. Copied the the 10.x MR changes to the new MR.
- ๐บ๐ธUnited States smustgrave
Probably will need test coverage as well.
- ๐ฎ๐ณIndia prabha1997
I haven't encountered this issue i checked on drupal 11.x, uploaded screenshot for reference
- ๐จ๐ฆCanada tdroden Calgary, Alberta
Not really sure what to do here then.
I just used simplytest.me and spun up an install of Drupal 11.1.2. (I was running into dependency issues trying to build with Devel in the mix, so just used a basic install and manually created 50 menu entries.)
Using my test steps above, I was able to replicate that this is indeed happening in D11 (as well as D10) - once enough menu entries exist to trigger pagination (screenshot attached).
- ๐จ๐ฆCanada Charlie ChX Negyesi ๐Canada
Since
uasort
hits the comparer function more than once for each element https://3v4l.org/lYob3 I thought I would recommend assembling the array ahead of the time and then usenatcasesort
instead, something like$result = array_map(function ($a) use ($field) { foreach (explode('.', $field) as $property) { $a = $a[$property] ?? NULL; } }, $result); natcasesort($result);
but I can't recommend this because I do not understand the current code at all. I am looking at
a07a4ba051
from #2942569: Sorting nested properties of config entity queries does not work โ and I still don't understand it. Say there are some third party settings you are sorting on, one config object doesn't have them then one half of this loop becomes NULL the other half becomes a something and then you are trying to sort NULL to something? What is even the desired sort outcome of this? I will link this question to the authors of the current codebase to see whether we can do something.