From a5ec07a77d20e72538f8eec3e156a62eb2fed5d0 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Sun, 1 Feb 2026 03:52:38 +0100 Subject: [PATCH] Exact found rows except MySQL and PgSQL --- adminer/select.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adminer/select.inc.php b/adminer/select.inc.php index bd0bf1b8..8899e65d 100644 --- a/adminer/select.inc.php +++ b/adminer/select.inc.php @@ -503,7 +503,7 @@ if (!$columns && support("table")) { if (intval($found_rows) < max(1e4, 2 * ($page + 1) * $limit)) { // slow with big tables $found_rows = first(slow_query(count_rows($TABLE, $where, $is_group, $group))); - } else { + } elseif (JUSH == 'sql' || JUSH == 'pgsql') { $exact_count = false; } }