aboutsummaryrefslogtreecommitdiff
path: root/src/include/utils/xml.h
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2007-01-12 21:47:27 +0000
committerPeter Eisentraut <peter_e@gmx.net>2007-01-12 21:47:27 +0000
commit8b35795362be5fd06fe22575a64bce81002a22c2 (patch)
tree496937e8c3760ef27291f4f6862d6eb1f804c499 /src/include/utils/xml.h
parent92dffbd0297feb93e0985415d01db58162aff6de (diff)
downloadpostgresql-8b35795362be5fd06fe22575a64bce81002a22c2.tar.gz
postgresql-8b35795362be5fd06fe22575a64bce81002a22c2.zip
Use XML output escaping also in XMLFOREST.
Diffstat (limited to 'src/include/utils/xml.h')
-rw-r--r--src/include/utils/xml.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/xml.h b/src/include/utils/xml.h
index c4e508c488d..b7b105ef157 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.8 2007/01/10 20:33:54 petere Exp $
+ * $PostgreSQL: pgsql/src/include/utils/xml.h,v 1.9 2007/01/12 21:47:27 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -40,5 +40,6 @@ extern xmltype *xmlroot(xmltype *data, text *version, int standalone);
extern char *map_sql_identifier_to_xml_name(char *ident, bool fully_escaped);
extern char *map_xml_name_to_sql_identifier(char *name);
+extern char *map_sql_value_to_xml_value(Datum value, Oid type);
#endif /* XML_H */