diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-09-04 02:03:04 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-09-04 02:03:04 +0000 |
| commit | c9a6490991f6ab4e01f50eb9983777fca8a6e75a (patch) | |
| tree | 6a7f69d7626bd1570290375e8bf5a8c03679a3e1 /contrib/pgstattuple/uninstall_pgstattuple.sql | |
| parent | 57bfb27e60055c10e42b87e68a894720c2f78e70 (diff) | |
| download | postgresql-c9a6490991f6ab4e01f50eb9983777fca8a6e75a.tar.gz | |
Clean up some leftover problems in pgstattuple: remove unwanted and
unportable elog(NOTICE) report, fix install/uninstall sequence.
Itagaki Takahiro
Diffstat (limited to 'contrib/pgstattuple/uninstall_pgstattuple.sql')
| -rw-r--r-- | contrib/pgstattuple/uninstall_pgstattuple.sql | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/contrib/pgstattuple/uninstall_pgstattuple.sql b/contrib/pgstattuple/uninstall_pgstattuple.sql index efecc3b2e4..5b857bb868 100644 --- a/contrib/pgstattuple/uninstall_pgstattuple.sql +++ b/contrib/pgstattuple/uninstall_pgstattuple.sql @@ -2,7 +2,19 @@ SET search_path = public; DROP FUNCTION pgstattuple(oid); - DROP FUNCTION pgstattuple(text); - DROP TYPE pgstattuple_type; + +DROP FUNCTION pgstatindex(text); +DROP TYPE pgstatindex_type; + +DROP FUNCTION bt_metap(text); +DROP TYPE bt_metap_type; + +DROP FUNCTION bt_page_stats(text, int4); +DROP TYPE bt_page_stats_type; + +DROP FUNCTION bt_page_items(text, int4); +DROP TYPE bt_page_items_type; + +DROP FUNCTION pg_relpages(text); |
