mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
d3de08a008
changes from the main FSM commit for some reason.
11 lines
364 B
SQL
11 lines
364 B
SQL
/* $PostgreSQL: pgsql/contrib/pg_freespacemap/uninstall_pg_freespacemap.sql,v 1.4 2008/09/30 11:17:07 heikki Exp $ */
|
|
|
|
-- Adjust this setting to control where the objects get dropped.
|
|
SET search_path = public;
|
|
|
|
DROP VIEW pg_freespacemap_pages;
|
|
DROP VIEW pg_freespacemap_relations;
|
|
|
|
DROP FUNCTION pg_freespacemap_pages();
|
|
DROP FUNCTION pg_freespacemap_relations();
|