uninstall script for pgrowlocks - Josh Drake

This commit is contained in:
Tom Lane 2006-09-30 18:08:32 +00:00
parent 8fd0e43c4e
commit 035599da01
2 changed files with 7 additions and 1 deletions

View File

@ -2,7 +2,7 @@
#
# pgrowlocks Makefile
#
# $PostgreSQL: pgsql/contrib/pgrowlocks/Makefile,v 1.1 2006/04/23 01:12:58 ishii Exp $
# $PostgreSQL: pgsql/contrib/pgrowlocks/Makefile,v 1.2 2006/09/30 18:08:32 tgl Exp $
#
#-------------------------------------------------------------------------
@ -12,6 +12,7 @@ MODULE_big = pgrowlocks
OBJS = $(SRCS:.c=.o)
DOCS = README.pgrowlocks README.pgrowlocks.euc_jp
DATA_built = pgrowlocks.sql
DATA = uninstall_pgrowlocks.sql
ifdef USE_PGXS
PGXS = $(shell pg_config --pgxs)

View File

@ -0,0 +1,5 @@
SET search_path = public;
DROP FUNCTION pgrowlocks(text);
DROP TYPE pgrowlocks_type;