You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
postgres/contrib/dbsize/dbsize.sql.in

8 lines
257 B

CREATE FUNCTION database_size (name) RETURNS bigint
AS '@MODULE_FILENAME@', 'database_size'
LANGUAGE C WITH (isstrict);
CREATE FUNCTION relation_size (name) RETURNS bigint
AS '@MODULE_FILENAME@', 'relation_size'
LANGUAGE C WITH (isstrict);