diff options
| author | Peter Eisentraut | 2009-04-08 21:51:38 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2009-04-08 21:51:38 +0000 |
| commit | 77d67a4a3be1a2114ff9869fc3552a39fa7c5e68 (patch) | |
| tree | b9ce35991a7861160d1046b4e06eed5603e522bd /src/include | |
| parent | 84bb600be180c53addcbccba69be5134fcbce2dc (diff) | |
XMLATTRIBUTES() should send the attribute values through
map_sql_value_to_xml_value() instead of directly through the data type output
function. This is per SQL standard, and consistent with XMLELEMENT().
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/nodes/execnodes.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h index cb293a0be55..ad80018bfba 100644 --- a/src/include/nodes/execnodes.h +++ b/src/include/nodes/execnodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/nodes/execnodes.h,v 1.203 2009/04/02 22:39:30 tgl Exp $ + * $PostgreSQL: pgsql/src/include/nodes/execnodes.h,v 1.204 2009/04/08 21:51:38 petere Exp $ * *------------------------------------------------------------------------- */ @@ -847,7 +847,6 @@ typedef struct XmlExprState { ExprState xprstate; List *named_args; /* ExprStates for named arguments */ - FmgrInfo *named_outfuncs; /* array of output fns for named arguments */ List *args; /* ExprStates for other arguments */ } XmlExprState; |
