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:
@ -9,6 +9,7 @@ OBJS = xpath.o xslt_proc.o
|
||||
SHLIB_LINK = -lxml2 -lxslt
|
||||
|
||||
DATA_built = pgxml.sql
|
||||
DATA = uninstall_pgxml.sql
|
||||
DOCS = README.xml2
|
||||
|
||||
override CFLAGS += $(shell xml2-config --cflags)
|
||||
|
27
contrib/xml2/uninstall_pgxml.sql
Normal file
27
contrib/xml2/uninstall_pgxml.sql
Normal file
@ -0,0 +1,27 @@
|
||||
SET search_path = public;
|
||||
|
||||
DROP FUNCTION xslt_process(text,text);
|
||||
|
||||
DROP FUNCTION xslt_process(text,text,text);
|
||||
|
||||
DROP FUNCTION xpath_table(text,text,text,text,text);
|
||||
|
||||
DROP FUNCTION xpath_nodeset(text,text,text);
|
||||
|
||||
DROP FUNCTION xpath_nodeset(text,text);
|
||||
|
||||
DROP FUNCTION xpath_list(text,text);
|
||||
|
||||
DROP FUNCTION xpath_list(text,text,text);
|
||||
|
||||
DROP FUNCTION xpath_bool(text,text);
|
||||
|
||||
DROP FUNCTION xpath_number(text,text);
|
||||
|
||||
DROP FUNCTION xpath_nodeset(text,text,text,text);
|
||||
|
||||
DROP FUNCTION xpath_string(text,text);
|
||||
|
||||
DROP FUNCTION xml_encode_special_chars(text);
|
||||
|
||||
DROP FUNCTION xml_valid(text);
|
Reference in New Issue
Block a user