mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
config
contrib
adddepend
array
btree_gist
chkpass
cube
dbase
dblink
dbmirror
dbsize
earthdistance
findoidjoins
fulltextindex
fuzzystrmatch
intagg
intarray
ipc_check
isbn_issn
lo
ltree
mSQL-interface
mac
miscutil
mysql
noupdate
oid2name
oracle
pg_autovacuum
pg_dumplo
pg_logger
pg_upgrade
pgbench
pgcrypto
pgstattuple
reindexdb
rserv
rtree_gist
seg
spi
start-scripts
string
tablefunc
tips
tools
tsearch
tsearch2
userlock
vacuumlo
xml
Makefile
README.pgxml
TODO
pgxml.c
pgxml.h
pgxml.sql.in
pgxml_dom.c
pgxml_dom.sql.in
Makefile
README
contrib-global.mk
doc
src
COPYRIGHT
GNUmakefile.in
HISTORY
INSTALL
Makefile
README
aclocal.m4
configure
configure.in
register.txt
only remnant of this failed experiment is that the server will take SET AUTOCOMMIT TO ON. Still TODO: provide some client-side autocommit logic in libpq.
11 lines
342 B
MySQL
11 lines
342 B
MySQL
-- 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;
|