mirror of
https://github.com/postgres/postgres.git
synced 2025-06-14 18:42:34 +03:00
Mapping schemas and databases to XML and XML Schema.
Refactor and document the remaining mapping code.
This commit is contained in:
@ -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,
|
||||
|
Reference in New Issue
Block a user