aboutsummaryrefslogtreecommitdiff
path: root/contrib/pg_freespacemap/pg_freespacemap.sql.in
blob: b69026953f5e1fcc67f9b384857f50de9d5ed1e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
-- Adjust this setting to control where the objects get created.
BEGIN;
SET search_path = public;

-- Register the function.
CREATE OR REPLACE FUNCTION pg_freespacemap()
RETURNS SETOF RECORD
AS 'MODULE_PATHNAME', 'pg_freespacemap'
LANGUAGE C;

-- Create a view for convenient access.
CREATE VIEW pg_freespacemap AS
	SELECT P.* FROM pg_freespacemap() AS P
 	(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;
REVOKE ALL ON pg_freespacemap FROM PUBLIC;
COMMIT;