1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +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

@ -2,10 +2,11 @@
# Makefile for integer aggregator
# Copyright (C) 2001 Digital Music Network.
# by Mark L. Woodward
# $PostgreSQL: pgsql/contrib/intagg/Makefile,v 1.6 2005/09/27 17:13:03 tgl Exp $
# $PostgreSQL: pgsql/contrib/intagg/Makefile,v 1.7 2006/02/27 12:54:39 petere Exp $
MODULES = int_aggregate
DATA_built = int_aggregate.sql
DATA = uninstall_int_aggregate.sql
DOCS = README.int_aggregate
ifdef USE_PGXS

View File

@ -0,0 +1,9 @@
SET search_path = public;
DROP FUNCTION int_array_enum(int4[]);
DROP AGGREGATE int_array_aggregate (int4);
DROP FUNCTION int_agg_final_array (int4[]);
DROP FUNCTION int_agg_state (int4[], int4);