blob: 168506708a780da57fb162062ec14cc5bc28dfaf (
plain)
1
2
3
4
5
6
7
|
/* contrib/pg_freespacemap/uninstall_pg_freespacemap.sql */
-- Adjust this setting to control where the objects get dropped.
SET search_path = public;
DROP FUNCTION pg_freespace(regclass, bigint);
DROP FUNCTION pg_freespace(regclass);
|