blob: 29eac40f297992ca4e7901ae97583e3d7caebee6 (
plain)
1
2
3
4
5
6
7
8
9
|
/* 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);
|