We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70d845c commit 126e86bCopy full SHA for 126e86b
sql/b1_table_estimation.sql
@@ -69,7 +69,7 @@ select
69
coalesce(nullif(schema_name, 'public') || '.', '') || table_name as "Table",
70
pg_size_pretty(real_size::numeric) as "Size",
71
'~' || pg_size_pretty(extra_size::numeric)::text || ' (' || round(extra_ratio::numeric, 2)::text || '%)' as "Extra",
72
- '~' || pg_size_pretty(bloat_size::numeric)::text || ' (' || round(bloat_ratio::numeric, 2)::text || '%)' as "Bloat_estimated",
+ '~' || pg_size_pretty(bloat_size::numeric)::text || ' (' || round(bloat_ratio::numeric, 2)::text || '%)' as "Bloat",
73
'~' || pg_size_pretty((real_size - bloat_size)::numeric) as "Live",
74
fillfactor
75
\if :postgresdba_extended
0 commit comments