Add ChangeLog entry for #17702

- Closes #17702

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
This commit is contained in:
Maurício Meneghini Fauth 2023-03-24 16:35:15 -03:00
parent 64aa5fc7b9
commit 0301e48a27
No known key found for this signature in database
GPG Key ID: 6A16FD38AFC89CC8
2 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,7 @@ phpMyAdmin - ChangeLog
- issue #16451 Increase password characters limit to 2000 during login
- issue Fix "IS NULL" is shown for non-nullable columns on search page
- issue #16199 Fix dragging of tables in designer
- issue #17702 Fix performance issue when handling large number of tables in a single database
5.2.1 (2023-02-07)
- issue #17522 Fix case where the routes cache file is invalid

View File

@ -391,6 +391,7 @@ class DatabaseInterface implements DbalInterface
if ($sort_order === 'DESC') {
$table = array_reverse($table);
}
$table = array_slice($table, $limit_offset, $limit_count);
$paging_applied = true;
}