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:
@ -1,9 +1,10 @@
|
||||
# $PostgreSQL: pgsql/contrib/fuzzystrmatch/Makefile,v 1.6 2005/09/27 17:13:03 tgl Exp $
|
||||
# $PostgreSQL: pgsql/contrib/fuzzystrmatch/Makefile,v 1.7 2006/02/27 12:54:38 petere Exp $
|
||||
|
||||
MODULE_big = fuzzystrmatch
|
||||
SRCS += fuzzystrmatch.c dmetaphone.c
|
||||
OBJS = $(SRCS:.c=.o)
|
||||
DATA_built = fuzzystrmatch.sql
|
||||
DATA = uninstall_fuzzystrmatch.sql
|
||||
DOCS = README.fuzzystrmatch README.soundex
|
||||
|
||||
ifdef USE_PGXS
|
||||
|
16
contrib/fuzzystrmatch/uninstall_fuzzystrmatch.sql
Normal file
16
contrib/fuzzystrmatch/uninstall_fuzzystrmatch.sql
Normal file
@ -0,0 +1,16 @@
|
||||
-- Adjust this setting to control where the objects get created.
|
||||
SET search_path = public;
|
||||
|
||||
DROP FUNCTION dmetaphone_alt (text);
|
||||
|
||||
DROP FUNCTION dmetaphone (text);
|
||||
|
||||
DROP FUNCTION difference(text,text);
|
||||
|
||||
DROP FUNCTION text_soundex(text);
|
||||
|
||||
DROP FUNCTION soundex(text);
|
||||
|
||||
DROP FUNCTION metaphone (text,int);
|
||||
|
||||
DROP FUNCTION levenshtein (text,text);
|
Reference in New Issue
Block a user