mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
029fac2264
It was never terribly consistent to use OR REPLACE (because of the lack of comparable functionality for data types, operators, etc), and experimentation shows that it's now positively pernicious in the extension world. We really want a failure to occur if there are any conflicts, else it's unclear what the extension-ownership state of the conflicted object ought to be. Most of the time, CREATE EXTENSION will fail anyway because of conflicts on other object types, but an extension defining only functions can succeed, with bad results.
71 lines
1.7 KiB
SQL
71 lines
1.7 KiB
SQL
/* contrib/xml2/xml2--1.0.sql */
|
|
|
|
--SQL for XML parser
|
|
|
|
-- deprecated old name for xml_is_well_formed
|
|
CREATE FUNCTION xml_valid(text) RETURNS bool
|
|
AS 'xml_is_well_formed'
|
|
LANGUAGE INTERNAL STRICT STABLE;
|
|
|
|
CREATE FUNCTION xml_encode_special_chars(text) RETURNS text
|
|
AS 'MODULE_PATHNAME'
|
|
LANGUAGE C STRICT IMMUTABLE;
|
|
|
|
CREATE FUNCTION xpath_string(text,text) RETURNS text
|
|
AS 'MODULE_PATHNAME'
|
|
LANGUAGE C STRICT IMMUTABLE;
|
|
|
|
CREATE FUNCTION xpath_nodeset(text,text,text,text) RETURNS text
|
|
AS 'MODULE_PATHNAME'
|
|
LANGUAGE C STRICT IMMUTABLE;
|
|
|
|
CREATE FUNCTION xpath_number(text,text) RETURNS float4
|
|
AS 'MODULE_PATHNAME'
|
|
LANGUAGE C STRICT IMMUTABLE;
|
|
|
|
CREATE FUNCTION xpath_bool(text,text) RETURNS boolean
|
|
AS 'MODULE_PATHNAME'
|
|
LANGUAGE C STRICT IMMUTABLE;
|
|
|
|
-- List function
|
|
|
|
CREATE FUNCTION xpath_list(text,text,text) RETURNS text
|
|
AS 'MODULE_PATHNAME'
|
|
LANGUAGE C STRICT IMMUTABLE;
|
|
|
|
CREATE FUNCTION xpath_list(text,text) RETURNS text
|
|
AS 'SELECT xpath_list($1,$2,'','')'
|
|
LANGUAGE SQL STRICT IMMUTABLE;
|
|
|
|
-- Wrapper functions for nodeset where no tags needed
|
|
|
|
CREATE FUNCTION xpath_nodeset(text,text)
|
|
RETURNS text
|
|
AS 'SELECT xpath_nodeset($1,$2,'''','''')'
|
|
LANGUAGE SQL STRICT IMMUTABLE;
|
|
|
|
CREATE FUNCTION xpath_nodeset(text,text,text)
|
|
RETURNS text
|
|
AS 'SELECT xpath_nodeset($1,$2,'''',$3)'
|
|
LANGUAGE SQL STRICT IMMUTABLE;
|
|
|
|
-- Table function
|
|
|
|
CREATE FUNCTION xpath_table(text,text,text,text,text)
|
|
RETURNS setof record
|
|
AS 'MODULE_PATHNAME'
|
|
LANGUAGE C STRICT STABLE;
|
|
|
|
-- XSLT functions
|
|
|
|
CREATE FUNCTION xslt_process(text,text,text)
|
|
RETURNS text
|
|
AS 'MODULE_PATHNAME'
|
|
LANGUAGE C STRICT VOLATILE;
|
|
|
|
-- the function checks for the correct argument count
|
|
CREATE FUNCTION xslt_process(text,text)
|
|
RETURNS text
|
|
AS 'MODULE_PATHNAME'
|
|
LANGUAGE C STRICT IMMUTABLE;
|