mirror of
https://github.com/postgres/postgres.git
synced 2025-06-16 06:01:02 +03:00
Fix map_sql_table_to_xmlschema() with dropped attributes.
also backpatched to 8.3
This commit is contained in:
@ -7,7 +7,7 @@
|
|||||||
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
|
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
|
||||||
* Portions Copyright (c) 1994, Regents of the University of California
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
* $PostgreSQL: pgsql/src/backend/utils/adt/xml.c,v 1.88 2009/05/13 20:27:17 tgl Exp $
|
* $PostgreSQL: pgsql/src/backend/utils/adt/xml.c,v 1.89 2009/06/08 21:32:33 petere Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -2627,12 +2627,16 @@ map_sql_table_to_xmlschema(TupleDesc tupdesc, Oid relid, bool nulls,
|
|||||||
rowtypename);
|
rowtypename);
|
||||||
|
|
||||||
for (i = 0; i < tupdesc->natts; i++)
|
for (i = 0; i < tupdesc->natts; i++)
|
||||||
|
{
|
||||||
|
if (tupdesc->attrs[i]->attisdropped)
|
||||||
|
continue;
|
||||||
appendStringInfo(&result,
|
appendStringInfo(&result,
|
||||||
" <xsd:element name=\"%s\" type=\"%s\"%s></xsd:element>\n",
|
" <xsd:element name=\"%s\" type=\"%s\"%s></xsd:element>\n",
|
||||||
map_sql_identifier_to_xml_name(NameStr(tupdesc->attrs[i]->attname),
|
map_sql_identifier_to_xml_name(NameStr(tupdesc->attrs[i]->attname),
|
||||||
true, false),
|
true, false),
|
||||||
map_sql_type_to_xml_name(tupdesc->attrs[i]->atttypid, -1),
|
map_sql_type_to_xml_name(tupdesc->attrs[i]->atttypid, -1),
|
||||||
nulls ? " nillable=\"true\"" : " minOccurs=\"0\"");
|
nulls ? " nillable=\"true\"" : " minOccurs=\"0\"");
|
||||||
|
}
|
||||||
|
|
||||||
appendStringInfoString(&result,
|
appendStringInfoString(&result,
|
||||||
" </xsd:sequence>\n"
|
" </xsd:sequence>\n"
|
||||||
|
Reference in New Issue
Block a user