2006-02-12 11:55:53 +08:00
|
|
|
-- 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'
|
2006-02-28 00:09:50 +08:00
|
|
|
LANGUAGE C;
|
2006-02-12 11:55:53 +08:00
|
|
|
|
|
|
|
-- Create a view for convenient access.
|
|
|
|
CREATE VIEW pg_freespacemap AS
|
|
|
|
SELECT P.* FROM pg_freespacemap() AS P
|
2006-04-27 06:41:18 +08:00
|
|
|
(reltablespace oid, reldatabase oid, relfilenode oid, relblocknumber int8, bytes int4);
|
2006-02-12 11:55:53 +08:00
|
|
|
|
|
|
|
-- 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;
|