mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Adjust /contrib/pg_freespace to show index free space as NULL (FSM only
tracks index pages, not free space on pages): 1/ Index free bytes set to NULL 2/ Comment added to the README briefly mentioning the index business 3/ Columns reordered more logically 4/ 'Blockid' column removed 5/ Free bytes column renamed to just 'bytes' instead of 'blockfreebytes' Mark Kirkwood
This commit is contained in:
@ -11,7 +11,7 @@ LANGUAGE C;
|
||||
-- Create a view for convenient access.
|
||||
CREATE VIEW pg_freespacemap AS
|
||||
SELECT P.* FROM pg_freespacemap() AS P
|
||||
(blockid int4, relfilenode oid, reltablespace oid, reldatabase oid, relblocknumber int8, blockfreebytes int4);
|
||||
(reltablespace oid, reldatabase oid, relfilenode oid, relblocknumber int8, bytes int4);
|
||||
|
||||
-- Don't want these to be available at public.
|
||||
REVOKE ALL ON FUNCTION pg_freespacemap() FROM PUBLIC;
|
||||
|
Reference in New Issue
Block a user