1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Move new version of contrib/ xml into xml2, keep old version in /xml.

This commit is contained in:
Bruce Momjian
2004-03-05 03:57:58 +00:00
parent adca025c9e
commit 31f4b59a46
11 changed files with 751 additions and 0 deletions

View File

@ -0,0 +1,10 @@
-- SQL for XML parser
-- Adjust this setting to control where the objects get created.
SET search_path TO public;
CREATE OR REPLACE FUNCTION pgxml_parse(text) RETURNS boolean
AS 'MODULE_PATHNAME' LANGUAGE c STRICT;
CREATE OR REPLACE FUNCTION pgxml_xpath(text, text, text, text) RETURNS text
AS 'MODULE_PATHNAME' LANGUAGE c STRICT;