else
appendStringInfo(result, " xsi:noNamespaceSchemaLocation=\"#\"");
}
- appendStringInfo(result, ">\n\n");
+ appendStringInfo(result, ">\n");
}
errmsg("invalid query")));
if (!tableforest)
+ {
xmldata_root_element_start(result, xmltn, xmlschema,
targetns, top_level);
+ appendStringInfoString(result, "\n");
+ }
if (xmlschema)
appendStringInfo(result, "%s\n\n", xmlschema);
result = makeStringInfo();
xmldata_root_element_start(result, xmlsn, xmlschema, targetns, top_level);
+ appendStringInfoString(result, "\n");
if (xmlschema)
appendStringInfo(result, "%s\n\n", xmlschema);
result = makeStringInfo();
xmldata_root_element_start(result, xmlcn, xmlschema, targetns, true);
+ appendStringInfoString(result, "\n");
if (xmlschema)
appendStringInfo(result, "%s\n\n", xmlschema);
table_to_xml
---------------------------------------------------------------
<test1 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">+
- +
<a>1</a> +
<b>one</b> +
</test1> +
+
<test1 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">+
- +
<a>2</a> +
<b>two</b> +
</test1> +
+
<test1 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">+
- +
<a>-1</a> +
</test1> +
+
table_to_xml
---------------------------------------------------------------
<test1 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">+
- +
<a>1</a> +
<b>one</b> +
</test1> +
+
<test1 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">+
- +
<a>2</a> +
<b>two</b> +
</test1> +
+
<test1 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">+
- +
<a>-1</a> +
<b xsi:nil="true"/> +
</test1> +
</xsd:schema> +
+
<test1 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> +
- +
<a>1</a> +
<b>one</b> +
</test1> +
+
<test1 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> +
- +
<a>2</a> +
<b>two</b> +
</test1> +
+
<test1 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> +
- +
<a>-1</a> +
</test1> +
+
</xsd:schema> +
+
<test1 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="foo"> +
- +
<a>1</a> +
<b>one</b> +
</test1> +
+
<test1 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="foo"> +
- +
<a>2</a> +
<b>two</b> +
</test1> +
+
<test1 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="foo"> +
- +
<a>-1</a> +
<b xsi:nil="true"/> +
</test1> +
</xsd:schema> +
+
<row xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> +
- +
<a>1</a> +
<b>one</b> +
</row> +
+
<row xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> +
- +
<a>2</a> +
<b>two</b> +
</row> +
+
<row xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> +
- +
<a>-1</a> +
<b xsi:nil="true"/> +
</row> +
cursor_to_xml
-------------------------------------------------------------
<row xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">+
- +
<a>-1</a> +
</row> +
+
<row xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">+
- +
<a>1</a> +
<b>one</b> +
</row> +
+
<row xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">+
- +
<a>2</a> +
<b>two</b> +
</row> +
<testxmlschema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">+
+
<test1> +
- +
<a>1</a> +
<b>one</b> +
</test1> +
+
<test1> +
- +
<a>2</a> +
<b>two</b> +
</test1> +
+
<test1> +
- +
<a>-1</a> +
</test1> +
+
+
<test2> +
- +
<z>55</z> +
<y>abc</y> +
<x>def </x> +
</xsd:schema> +
+
<test1> +
- +
<a>1</a> +
<b>one</b> +
</test1> +
+
<test1> +
- +
<a>2</a> +
<b>two</b> +
</test1> +
+
<test1> +
- +
<a>-1</a> +
<b xsi:nil="true"/> +
</test1> +
+
+
<test2> +
- +
<z>55</z> +
<y>abc</y> +
<x>def </x> +