1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

contrib uninstall scripts

by David Fetter
This commit is contained in:
Peter Eisentraut
2006-02-27 12:54:39 +00:00
parent d46fbef386
commit fe83b3ebc6
34 changed files with 1222 additions and 12 deletions

View File

@ -1,9 +1,10 @@
# $PostgreSQL: pgsql/contrib/pg_buffercache/Makefile,v 1.2 2005/09/27 17:13:07 tgl Exp $
# $PostgreSQL: pgsql/contrib/pg_buffercache/Makefile,v 1.3 2006/02/27 12:54:39 petere Exp $
MODULE_big = pg_buffercache
OBJS = pg_buffercache_pages.o
DATA_built = pg_buffercache.sql
DATA = uninstall_pg_buffercache.sql
DOCS = README.pg_buffercache
ifdef USE_PGXS

View File

@ -0,0 +1,6 @@
-- Adjust this setting to control where the objects get created.
SET search_path = public;
DROP VIEW pg_buffercache;
DROP FUNCTION pg_buffercache_pages();