Add uninstall script for adminpack - Josh Drake

REL8_2_STABLE
Tom Lane 19 years ago
parent a9c7c5c240
commit 8fd0e43c4e
  1. 1
      contrib/adminpack/Makefile
  2. 8
      contrib/adminpack/uninstall_adminpack.sql

@ -1,6 +1,7 @@
MODULE_big = adminpack MODULE_big = adminpack
PG_CPPFLAGS = -I$(libpq_srcdir) PG_CPPFLAGS = -I$(libpq_srcdir)
DATA_built = adminpack.sql DATA_built = adminpack.sql
DATA = uninstall_adminpack.sql
DOCS = README.adminpack DOCS = README.adminpack
OBJS = adminpack.o OBJS = adminpack.o

@ -0,0 +1,8 @@
DROP FUNCTION pg_catalog.pg_file_write(text, text, bool) ;
DROP FUNCTION pg_catalog.pg_file_rename(text, text, text) ;
DROP FUNCTION pg_catalog.pg_file_rename(text, text) ;
DROP FUNCTION pg_catalog.pg_file_unlink(text) ;
DROP FUNCTION pg_catalog.pg_logdir_ls() ;
DROP FUNCTION pg_catalog.pg_file_read(text, bigint, bigint) ;
DROP FUNCTION pg_catalog.pg_file_length(text) ;
DROP FUNCTION pg_catalog.pg_logfile_rotate() ;
Loading…
Cancel
Save