Force schema so it can calculate the size of the database with the proper schema
This commit is contained in:
parent
1c86599f9d
commit
5806ac8f8d
@ -7,7 +7,7 @@ $$
|
||||
--
|
||||
-- NOTE: division by 2 is an hack for the_geom_webmercator
|
||||
--
|
||||
SELECT coalesce(int8(sum(pg_total_relation_size(quote_ident(table_name))) / 2), 0)
|
||||
SELECT coalesce(int8(sum(pg_total_relation_size(schema_name || '.' || table_name)) / 2), 0)
|
||||
AS quota
|
||||
FROM information_schema.tables
|
||||
WHERE table_catalog = current_database() AND table_schema = schema_name
|
||||
|
Loading…
Reference in New Issue
Block a user