diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2007-02-16 07:46:55 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2007-02-16 07:46:55 +0000 |
commit | 355e05ab4156a71a55ab1c71c69442db43bb8529 (patch) | |
tree | fcd18d8a1266693c8992f075a5cf7eba9248efd2 /src/include/utils/xml.h | |
parent | bb0a8a3ad42eb882b31df8eb6e0552f877119daa (diff) | |
download | postgresql-355e05ab4156a71a55ab1c71c69442db43bb8529.tar.gz postgresql-355e05ab4156a71a55ab1c71c69442db43bb8529.zip |
Functions for mapping table data and table schemas to XML (a.k.a. XML export)
Diffstat (limited to 'src/include/utils/xml.h')
-rw-r--r-- | src/include/utils/xml.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/include/utils/xml.h b/src/include/utils/xml.h index 99ec499c5c9..7cf23b67066 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.15 2007/02/11 22:18:16 petere Exp $ + * $PostgreSQL: pgsql/src/include/utils/xml.h,v 1.16 2007/02/16 07:46:55 petere Exp $ * *------------------------------------------------------------------------- */ @@ -37,6 +37,15 @@ extern Datum texttoxml(PG_FUNCTION_ARGS); extern Datum xmltotext(PG_FUNCTION_ARGS); extern Datum xmlvalidate(PG_FUNCTION_ARGS); +extern Datum table_to_xml(PG_FUNCTION_ARGS); +extern Datum query_to_xml(PG_FUNCTION_ARGS); +extern Datum cursor_to_xml(PG_FUNCTION_ARGS); +extern Datum table_to_xmlschema(PG_FUNCTION_ARGS); +extern Datum query_to_xmlschema(PG_FUNCTION_ARGS); +extern Datum cursor_to_xmlschema(PG_FUNCTION_ARGS); +extern Datum table_to_xml_and_xmlschema(PG_FUNCTION_ARGS); +extern Datum query_to_xml_and_xmlschema(PG_FUNCTION_ARGS); + typedef enum { XML_STANDALONE_YES, |