diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2006-12-29 10:50:22 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2006-12-29 10:50:22 +0000 |
commit | 8832f0f35896c16efd7de4cf35ef97348c90f2f6 (patch) | |
tree | 1fdacffc698981ffc1a6c74f01da6d76714512ca /src/include/utils/xml.h | |
parent | 9aefd56669131bfe8dd234544fb87e848a781c97 (diff) | |
download | postgresql-8832f0f35896c16efd7de4cf35ef97348c90f2f6.tar.gz postgresql-8832f0f35896c16efd7de4cf35ef97348c90f2f6.zip |
De-escape XML names when reverse-compiling XML expressions.
Diffstat (limited to 'src/include/utils/xml.h')
-rw-r--r-- | src/include/utils/xml.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/xml.h b/src/include/utils/xml.h index ca501420326..20666a48ccf 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.4 2006/12/28 14:28:36 petere Exp $ + * $PostgreSQL: pgsql/src/include/utils/xml.h,v 1.5 2006/12/29 10:50:22 petere Exp $ * *------------------------------------------------------------------------- */ @@ -37,5 +37,6 @@ 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); +extern char *map_xml_name_to_sql_identifier(char *name); #endif /* XML_H */ |