mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
c9a6490991
unportable elog(NOTICE) report, fix install/uninstall sequence. Itagaki Takahiro
21 lines
481 B
SQL
21 lines
481 B
SQL
-- Adjust this setting to control where the objects get created.
|
|
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);
|