Skip to content

Commit

Permalink
Add ChangeLog entry for #17702
Browse files Browse the repository at this point in the history
- Closes #17702

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
  • Loading branch information
MauricioFauth committed Mar 24, 2023
1 parent 64aa5fc commit 0301e48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions libraries/classes/DatabaseInterface.php
Expand Up @@ -391,6 +391,7 @@ public function getTablesFull(
if ($sort_order === 'DESC') {
$table = array_reverse($table);
}

$table = array_slice($table, $limit_offset, $limit_count);
$paging_applied = true;
}
Expand Down

0 comments on commit 0301e48

Please sign in to comment.