mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
aa4c702eac
Create objects in public schema. Make spacing/capitalization consistent. Remove transaction block use for object creation. Remove unneeded function GRANTs.
17 lines
397 B
Plaintext
17 lines
397 B
Plaintext
--SQL for XML parser
|
|
|
|
-- Adjust this setting to control where the objects get created.
|
|
SET search_path = public;
|
|
|
|
SET autocommit TO 'on';
|
|
|
|
CREATE OR REPLACE FUNCTION pgxml_parse(text)
|
|
RETURNS bool
|
|
AS '_OBJWD_/pgxml_dom_DLSUFFIX_'
|
|
LANGUAGE 'c' WITH (isStrict);
|
|
|
|
CREATE OR REPLACE FUNCTION pgxml_xpath(text,text,text,text)
|
|
RETURNS text
|
|
AS '_OBJWD_/pgxml_dom_DLSUFFIX_'
|
|
LANGUAGE 'c' WITH (isStrict);
|