1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Properly mark pg_freespace() function as strict. Also update

uninstall script to match reality.
This commit is contained in:
Tom Lane
2009-06-10 22:12:28 +00:00
parent 5e29862aa2
commit 15a3fe6d63
2 changed files with 5 additions and 8 deletions

View File

@ -1,10 +1,7 @@
/* $PostgreSQL: pgsql/contrib/pg_freespacemap/uninstall_pg_freespacemap.sql,v 1.4 2008/09/30 11:17:07 heikki Exp $ */
/* $PostgreSQL: pgsql/contrib/pg_freespacemap/uninstall_pg_freespacemap.sql,v 1.5 2009/06/10 22:12:28 tgl 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();
DROP FUNCTION pg_freespace(regclass, bigint);
DROP FUNCTION pg_freespace(regclass);