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

Commit 035599d

Browse files
committed
uninstall script for pgrowlocks - Josh Drake
1 parent 8fd0e43 commit 035599d

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

contrib/pgrowlocks/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# pgrowlocks Makefile
44
#
5-
# $PostgreSQL: pgsql/contrib/pgrowlocks/Makefile,v 1.1 2006/04/23 01:12:58 ishii Exp $
5+
# $PostgreSQL: pgsql/contrib/pgrowlocks/Makefile,v 1.2 2006/09/30 18:08:32 tgl Exp $
66
#
77
#-------------------------------------------------------------------------
88

@@ -12,6 +12,7 @@ MODULE_big = pgrowlocks
1212
OBJS = $(SRCS:.c=.o)
1313
DOCS = README.pgrowlocks README.pgrowlocks.euc_jp
1414
DATA_built = pgrowlocks.sql
15+
DATA = uninstall_pgrowlocks.sql
1516

1617
ifdef USE_PGXS
1718
PGXS = $(shell pg_config --pgxs)
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
SET search_path = public;
2+
3+
DROP FUNCTION pgrowlocks(text);
4+
5+
DROP TYPE pgrowlocks_type;

0 commit comments

Comments
 (0)