diff options
Diffstat (limited to 'src/include/utils/xml.h')
-rw-r--r-- | src/include/utils/xml.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/include/utils/xml.h b/src/include/utils/xml.h index a353d8837c9..713bdaeb115 100644 --- a/src/include/utils/xml.h +++ b/src/include/utils/xml.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/xml.h,v 1.2 2006/12/23 04:56:50 tgl Exp $ + * $PostgreSQL: pgsql/src/include/utils/xml.h,v 1.3 2006/12/24 00:29:20 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -27,11 +27,13 @@ typedef struct varlena xmltype; extern Datum xml_in(PG_FUNCTION_ARGS); extern Datum xml_out(PG_FUNCTION_ARGS); extern Datum xmlcomment(PG_FUNCTION_ARGS); -extern Datum xmlparse(PG_FUNCTION_ARGS); -extern Datum xmlpi(PG_FUNCTION_ARGS); -extern Datum xmlroot(PG_FUNCTION_ARGS); +extern Datum texttoxml(PG_FUNCTION_ARGS); extern Datum xmlvalidate(PG_FUNCTION_ARGS); +extern xmltype *xmlparse(text *data, bool is_doc, bool preserve_whitespace); +extern xmltype *xmlpi(char *target, text *arg); +extern xmltype *xmlroot(xmltype *data, text *version, int standalone); + extern char *map_sql_identifier_to_xml_name(char *ident, bool fully_escaped); #endif /* XML_H */ |