diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-09-30 18:08:32 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-09-30 18:08:32 +0000 |
commit | 035599da01bd7e0bd9c05ca9b953cc917dae7a34 (patch) | |
tree | 0dfa666b62c8c6187f324456ccab181462ba2532 | |
parent | 8fd0e43c4e9746fb61dcb6196aefad3fd0ab8ae8 (diff) | |
download | postgresql-035599da01bd7e0bd9c05ca9b953cc917dae7a34.tar.gz postgresql-035599da01bd7e0bd9c05ca9b953cc917dae7a34.zip |
uninstall script for pgrowlocks - Josh Drake
-rw-r--r-- | contrib/pgrowlocks/Makefile | 3 | ||||
-rw-r--r-- | contrib/pgrowlocks/uninstall_pgrowlocks.sql | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/contrib/pgrowlocks/Makefile b/contrib/pgrowlocks/Makefile index 2bff839455c..9cddd089b3d 100644 --- a/contrib/pgrowlocks/Makefile +++ b/contrib/pgrowlocks/Makefile @@ -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) diff --git a/contrib/pgrowlocks/uninstall_pgrowlocks.sql b/contrib/pgrowlocks/uninstall_pgrowlocks.sql new file mode 100644 index 00000000000..9e37d119755 --- /dev/null +++ b/contrib/pgrowlocks/uninstall_pgrowlocks.sql @@ -0,0 +1,5 @@ +SET search_path = public; + +DROP FUNCTION pgrowlocks(text); + +DROP TYPE pgrowlocks_type; |