diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2007-04-01 09:00:26 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2007-04-01 09:00:26 +0000 |
commit | 0b75afda92ff91a724327cbe44b46d8ec33494f0 (patch) | |
tree | ec73edd85ae65f2089e7e803d76599054bf1264f /src/include/utils/xml.h | |
parent | ae8072a4040c9d12a22048b4272769deaf927136 (diff) | |
download | postgresql-0b75afda92ff91a724327cbe44b46d8ec33494f0.tar.gz postgresql-0b75afda92ff91a724327cbe44b46d8ec33494f0.zip |
Mapping schemas and databases to XML and XML Schema.
Refactor and document the remaining mapping code.
Diffstat (limited to 'src/include/utils/xml.h')
-rw-r--r-- | src/include/utils/xml.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/include/utils/xml.h b/src/include/utils/xml.h index ef06e41b92b..15ba500d507 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.17 2007/03/22 20:14:58 momjian Exp $ + * $PostgreSQL: pgsql/src/include/utils/xml.h,v 1.18 2007/04/01 09:00:26 petere Exp $ * *------------------------------------------------------------------------- */ @@ -47,6 +47,14 @@ 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); +extern Datum schema_to_xml(PG_FUNCTION_ARGS); +extern Datum schema_to_xmlschema(PG_FUNCTION_ARGS); +extern Datum schema_to_xml_and_xmlschema(PG_FUNCTION_ARGS); + +extern Datum database_to_xml(PG_FUNCTION_ARGS); +extern Datum database_to_xmlschema(PG_FUNCTION_ARGS); +extern Datum database_to_xml_and_xmlschema(PG_FUNCTION_ARGS); + typedef enum { XML_STANDALONE_YES, |