mirror of
https://github.com/postgres/postgres.git
synced 2026-02-15 00:33:54 -05:00
9 lines
276 B
SQL
9 lines
276 B
SQL
/* contrib/pgstattuple/uninstall_pgstattuple.sql */
|
|
|
|
-- Adjust this setting to control where the objects get dropped.
|
|
SET search_path = public;
|
|
|
|
DROP FUNCTION pgstattuple(text);
|
|
DROP FUNCTION pgstattuple(oid);
|
|
DROP FUNCTION pgstatindex(text);
|
|
DROP FUNCTION pg_relpages(text);
|