diff options
author | Bruce Momjian <bruce@momjian.us> | 2007-03-22 20:14:58 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2007-03-22 20:14:58 +0000 |
commit | e651bcf3f623265fc0cea9d8ade6937ce89b73eb (patch) | |
tree | 492c933e0ed6fc2f1c1f5a937d0f6940f897256e /src/include/utils/xml.h | |
parent | 4f896dac17f7015b34347e278fc3db4047b86e43 (diff) | |
download | postgresql-e651bcf3f623265fc0cea9d8ade6937ce89b73eb.tar.gz postgresql-e651bcf3f623265fc0cea9d8ade6937ce89b73eb.zip |
Add xmlpath() to evaluate XPath expressions, with namespaces support.
Nikolay Samokhvalov
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 7cf23b67066..ef06e41b92b 100644 --- a/src/include/utils/xml.h +++ b/src/include/utils/xml.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/xml.h,v 1.16 2007/02/16 07:46:55 petere Exp $ + * $PostgreSQL: pgsql/src/include/utils/xml.h,v 1.17 2007/03/22 20:14:58 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -36,6 +36,7 @@ extern Datum xmlconcat2(PG_FUNCTION_ARGS); extern Datum texttoxml(PG_FUNCTION_ARGS); extern Datum xmltotext(PG_FUNCTION_ARGS); extern Datum xmlvalidate(PG_FUNCTION_ARGS); +extern Datum xmlpath(PG_FUNCTION_ARGS); extern Datum table_to_xml(PG_FUNCTION_ARGS); extern Datum query_to_xml(PG_FUNCTION_ARGS); |