Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit ad5031f

Browse files
committed
uninstall script for pg_freespacemap
1 parent 035599d commit ad5031f

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

contrib/pg_freespacemap/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
# $PostgreSQL: pgsql/contrib/pg_freespacemap/Makefile,v 1.1 2006/02/12 03:55:53 momjian Exp $
1+
# $PostgreSQL: pgsql/contrib/pg_freespacemap/Makefile,v 1.2 2006/09/30 18:15:48 tgl Exp $
22

33
MODULE_big = pg_freespacemap
44
OBJS = pg_freespacemap.o
55

66
DATA_built = pg_freespacemap.sql
7+
DATA = uninstall_pg_freespacemap.sql
78
DOCS = README.pg_freespacemap
89

910
ifdef USE_PGXS
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
SET search_path = public;
2+
3+
DROP VIEW pg_freespacemap_pages;
4+
DROP VIEW pg_freespacemap_relations;
5+
6+
DROP FUNCTION pg_freespacemap_pages();
7+
DROP FUNCTION pg_freespacemap_relations();

0 commit comments

Comments
 (0)