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:
@ -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
|
||||
|
9
contrib/intagg/uninstall_int_aggregate.sql
Normal file
9
contrib/intagg/uninstall_int_aggregate.sql
Normal 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);
|
Reference in New Issue
Block a user