Set header name correctly.

This commit is contained in:
Bill Thiede 2014-04-01 23:17:12 -07:00
parent 8fa9825b8e
commit 61c61a1075

View File

@ -1,4 +1,4 @@
SELECT nspname || '.' || relname AS "relation",
SELECT nspname || '.' || relname AS "table",
pg_size_pretty(pg_total_relation_size(C.oid)) AS "total_size"
FROM pg_class C
LEFT JOIN pg_namespace N ON (N.oid = C.relnamespace)