Skip to content

Commit a5ec07a

Browse files
committed
Exact found rows except MySQL and PgSQL
1 parent 68e8b5b commit a5ec07a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

adminer/select.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@
503503
if (intval($found_rows) < max(1e4, 2 * ($page + 1) * $limit)) {
504504
// slow with big tables
505505
$found_rows = first(slow_query(count_rows($TABLE, $where, $is_group, $group)));
506-
} else {
506+
} elseif (JUSH == 'sql' || JUSH == 'pgsql') {
507507
$exact_count = false;
508508
}
509509
}

0 commit comments

Comments
 (0)