Skip to content

Commit

Permalink
order tables by relname for pgsql (#28020)
Browse files Browse the repository at this point in the history
  • Loading branch information
frederic34 authored Feb 5, 2024
1 parent 1747a2f commit 411df8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/admin/system/database-tables.php
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@
print "</tr>\n";

$sql = "SELECT relname, seq_tup_read, idx_tup_fetch, n_tup_ins, n_tup_upd, n_tup_del";
$sql .= " FROM pg_stat_user_tables";
$sql .= " FROM pg_stat_user_tables ORDER BY relname";

$resql = $db->query($sql);
if ($resql) {
Expand Down

0 comments on commit 411df8f

Please sign in to comment.