File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ phpMyAdmin - ChangeLog
6060- issue #17528 Fix double escaping of database group names in the navigation tree
6161- issue #18473 Fix the NULL not applied after clearing nullable field
6262- issue #18454 Fix date field calendar display when changing NULL state
63+ - issue #18481 Fix missing pagination when using SELECT DISTINCT
6364
64655.2.1 (2023-02-07)
6566- issue #17522 Fix case where the routes cache file is invalid
Original file line number Diff line number Diff line change @@ -397,6 +397,14 @@ public static function dataProviderCountQueryResults(): array
397397 20 ,
398398
399399 ],
400+ [
401+ 'SELECT DISTINCT country_id FROM city; ' ,
402+ ['max_rows ' => 25 , 'pos ' => 0 ],
403+ 25 ,
404+ 109 ,
405+ false ,
406+ 'SELECT COUNT(*) FROM (SELECT DISTINCT country_id FROM city ) as cnt ' ,
407+ ],
400408 ];
401409 }
402410
You can’t perform that action at this time.
0 commit comments