diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2010-08-05 04:21:54 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2010-08-05 04:21:54 +0000 |
commit | 641459f26954b04f74d098a758b716297b6554ea (patch) | |
tree | 7f1e5144dbc7adee38988339c47cd6af1d9b8de4 /src/include/utils/xml.h | |
parent | 26e47efb66b7b41f1c4464105abd3da58a7bf04f (diff) | |
download | postgresql-641459f26954b04f74d098a758b716297b6554ea.tar.gz postgresql-641459f26954b04f74d098a758b716297b6554ea.zip |
Add xmlexists function
by Mike Fowler, reviewed by Peter Eisentraut
Diffstat (limited to 'src/include/utils/xml.h')
-rw-r--r-- | src/include/utils/xml.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/xml.h b/src/include/utils/xml.h index 7543cbb6ee4..6815e266c7c 100644 --- a/src/include/utils/xml.h +++ b/src/include/utils/xml.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/xml.h,v 1.31 2010/03/03 17:29:45 tgl Exp $ + * $PostgreSQL: pgsql/src/include/utils/xml.h,v 1.32 2010/08/05 04:21:54 petere Exp $ * *------------------------------------------------------------------------- */ @@ -37,6 +37,7 @@ extern Datum texttoxml(PG_FUNCTION_ARGS); extern Datum xmltotext(PG_FUNCTION_ARGS); extern Datum xmlvalidate(PG_FUNCTION_ARGS); extern Datum xpath(PG_FUNCTION_ARGS); +extern Datum xmlexists(PG_FUNCTION_ARGS); extern Datum table_to_xml(PG_FUNCTION_ARGS); extern Datum query_to_xml(PG_FUNCTION_ARGS); |