<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: XML Auto Loader rescuedDataColumn Doesn't Rescue Array Fields in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107217#M42735</link>
    <description>&lt;P&gt;This column will not appear magically, if you don't add it to your target table &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;As an alternative, instead of looking at this table, you can also look directly at the source, e.g. replacing toTable with display&lt;/P&gt;</description>
    <pubDate>Mon, 27 Jan 2025 12:32:38 GMT</pubDate>
    <dc:creator>Witold</dc:creator>
    <dc:date>2025-01-27T12:32:38Z</dc:date>
    <item>
      <title>XML Auto Loader rescuedDataColumn Doesn't Rescue Array Fields</title>
      <link>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/106898#M42628</link>
      <description>&lt;P&gt;Hiya! I'm interested whether anyone has a solution to the following problem. If you load XML using Auto Loader or otherwise and set the schema to be such that a single value is assumed for a given xpath but the actual XML contains multiple values (i.e. should be an array) then the additional values aren't rescued so become irrecoverably dropped.&lt;/P&gt;&lt;P&gt;Example XML data:&amp;nbsp;&lt;SPAN&gt;&amp;lt;Message&amp;gt;&amp;lt;Attribute&amp;gt;1&amp;lt;/Attribute&amp;gt;&amp;lt;Attribute&amp;gt;2&amp;lt;/Attribute&amp;gt;&amp;lt;/Message&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;rowTag: Message&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Schema applied: Attribute INTEGER&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;(actual schema should be Attribute&amp;nbsp;ARRAY&amp;lt;INTEGER&amp;gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Result:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Table containing one column Attribute with 2 as the value and the&amp;nbsp;rescuedDataColumn is empty.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;In the above example the value 1 in the additional&amp;nbsp;Attribute tag is dropped and cannot be recovered because it doesn't land in the&amp;nbsp;rescuedDataColumn. I need a way to ensure this data is not dropped because we cannot know whether any given tag in the XML being read has one node corresponding to it or is actually an array.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 24 Jan 2025 11:54:22 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/106898#M42628</guid>
      <dc:creator>peter_ticker</dc:creator>
      <dc:date>2025-01-24T11:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: XML Auto Loader rescuedDataColumn Doesn't Rescue Array Fields</title>
      <link>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/106942#M42651</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/145800"&gt;@peter_ticker&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Can you try this SQL snippet (refer to the attachment).&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;WITH xml_data AS (&lt;BR /&gt;SELECT '&amp;lt;ROOT&amp;gt;&amp;lt;Message&amp;gt;&amp;lt;Attribute&amp;gt;1&amp;lt;/Attribute&amp;gt;&amp;lt;Attribute&amp;gt;2&amp;lt;/Attribute&amp;gt;&amp;lt;/Message&amp;gt;&amp;lt;Message&amp;gt;&amp;lt;Attribute&amp;gt;3&amp;lt;/Attribute&amp;gt;&amp;lt;/Message&amp;gt;&amp;lt;Message&amp;gt;&amp;lt;Attribute&amp;gt;5&amp;lt;/Attribute&amp;gt;&amp;lt;Attribute&amp;gt;6&amp;lt;/Attribute&amp;gt;&amp;lt;/Message&amp;gt;&amp;lt;/ROOT&amp;gt;' AS xml_string&lt;BR /&gt;),&lt;BR /&gt;parsed_xml AS (&lt;BR /&gt;SELECT&lt;BR /&gt;xpath(xml_string, 'ROOT/Message/Attribute/text()') AS attributes&lt;BR /&gt;FROM xml_data&lt;BR /&gt;)&lt;BR /&gt;SELECT&lt;BR /&gt;explode(attributes) AS attribute_value&lt;BR /&gt;FROM parsed_xml;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;However, this approach may not work for complex and nested schemas.&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you are dealing with large and complex schema, I personally recommend either to convert to json or make use of external libraries like Maven &lt;A href="https://mvnrepository.com/artifact/com.databricks/spark-xml" target="_self"&gt;spark-xml&lt;/A&gt; (&lt;A target="_blank"&gt;com.databricks:spark-xml_2.12:0.16.0&lt;/A&gt;) with predefined schema.&lt;/P&gt;&lt;P&gt;Parsing using Maven Library:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Predefine the schema&lt;/LI&gt;&lt;LI&gt;Read the datafile as a dataframe with predefined schema - just schema is captured&lt;/LI&gt;&lt;LI&gt;Flatten it node level&lt;/LI&gt;&lt;LI&gt;Finally select the attributes that you wanted from the file.&amp;nbsp;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I tried different approaches and settled with this as a best fit for my use case. This works even for very complex nested structure as well.&lt;/P&gt;&lt;P&gt;Let me know for anything, else &lt;STRONG&gt;please mark as accepted solution.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2025 18:10:04 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/106942#M42651</guid>
      <dc:creator>MadhuB</dc:creator>
      <dc:date>2025-01-24T18:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: XML Auto Loader rescuedDataColumn Doesn't Rescue Array Fields</title>
      <link>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/106975#M42664</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If reading XML in databricks is concern to you, you can refer to below link on how to parse XML files in databricks.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.linkedin.com/pulse/reading-parsing-xml-files-databricks-avinash-narala-t2rtc/?trackingId=OJwyhnLgaG9IxHZp3WCUpg%3D%3D" target="_blank"&gt;https://www.linkedin.com/pulse/reading-parsing-xml-files-databricks-avinash-narala-t2rtc/?trackingId=OJwyhnLgaG9IxHZp3WCUpg%3D%3D&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If you find this helpful, mark it as solution.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Avinash N&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jan 2025 05:47:10 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/106975#M42664</guid>
      <dc:creator>Avinash_Narala</dc:creator>
      <dc:date>2025-01-25T05:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: XML Auto Loader rescuedDataColumn Doesn't Rescue Array Fields</title>
      <link>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107158#M42714</link>
      <description>&lt;P&gt;Yes I understand that XPATH allows all the nodes to be selected but you're assuming that I already know there will be multiple Attribute nodes. My use case is streaming with a rather complicated schema so I'm concerned about the above example in that Databricks doesn't rescue data when the schema is initially misconfigured.&lt;/P&gt;&lt;P&gt;Converting to JSON would have the same problem - if there aren't files with multiple nodes then the converted JSON wouldn't use an array to store the resulting field which would lead to issues when multiple nodes start appearing.&lt;/P&gt;&lt;P&gt;Does the Maven library rescue data that wasn't captured in the schema like in the above example?&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 08:45:43 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107158#M42714</guid>
      <dc:creator>peter_ticker</dc:creator>
      <dc:date>2025-01-27T08:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: XML Auto Loader rescuedDataColumn Doesn't Rescue Array Fields</title>
      <link>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107159#M42715</link>
      <description>&lt;P&gt;Your reference provides nothing which would help with my question. Using&amp;nbsp;BeautifulSoup you have to know exactly what the schema of the XML is in order to pull it into a Python object. If you incorrectly interpret the XML, then the result will be the same as my example.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 08:49:47 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107159#M42715</guid>
      <dc:creator>peter_ticker</dc:creator>
      <dc:date>2025-01-27T08:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: XML Auto Loader rescuedDataColumn Doesn't Rescue Array Fields</title>
      <link>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107160#M42716</link>
      <description>&lt;P&gt;Since DBR 14.3 &lt;A href="https://learn.microsoft.com/en-us/azure/databricks/query/formats/xml" target="_self"&gt;XML supports is included natively&lt;/A&gt;, so there's no real reason to recommend third-party libraries anymore.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 08:50:09 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107160#M42716</guid>
      <dc:creator>Witold</dc:creator>
      <dc:date>2025-01-27T08:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: XML Auto Loader rescuedDataColumn Doesn't Rescue Array Fields</title>
      <link>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107161#M42717</link>
      <description>&lt;P&gt;Hiya! Yep I'm intending to use Databricks native XML reader but my question raises an issue with the&amp;nbsp;&lt;SPAN&gt;rescuedDataColumn that personally prevents me from being able to use it.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 08:52:21 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107161#M42717</guid>
      <dc:creator>peter_ticker</dc:creator>
      <dc:date>2025-01-27T08:52:21Z</dc:date>
    </item>
    <item>
      <title>Re: XML Auto Loader rescuedDataColumn Doesn't Rescue Array Fields</title>
      <link>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107162#M42718</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/145800"&gt;@peter_ticker&lt;/a&gt;In your screenshot, I don't see you using Auto Loader. This might be the reason, why rescued data is empty for you.&lt;/P&gt;&lt;P&gt;Besides, you can also play around with mode and columnNameOfCorruptRecord&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 08:56:02 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107162#M42718</guid>
      <dc:creator>Witold</dc:creator>
      <dc:date>2025-01-27T08:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: XML Auto Loader rescuedDataColumn Doesn't Rescue Array Fields</title>
      <link>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107165#M42720</link>
      <description>&lt;P&gt;I used FROM_XML as it's the easiest to provide a reproducible example. The behaviour is the same in auto loader or otherwise. Databricks accepts that the schema I provided in the example is valid so doesn't consider the record corrupt or produce any rescued data. This is my concern.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 08:59:49 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107165#M42720</guid>
      <dc:creator>peter_ticker</dc:creator>
      <dc:date>2025-01-27T08:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: XML Auto Loader rescuedDataColumn Doesn't Rescue Array Fields</title>
      <link>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107215#M42733</link>
      <description>&lt;P&gt;Have you already checked columnNameOfCorruptRecord? I've seen cases in which this column contained data instead of the rescued data column. I believe the reason for that the XML parser fails before Auto Loader kicks in&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 12:10:27 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107215#M42733</guid>
      <dc:creator>Witold</dc:creator>
      <dc:date>2025-01-27T12:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: XML Auto Loader rescuedDataColumn Doesn't Rescue Array Fields</title>
      <link>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107216#M42734</link>
      <description>&lt;P&gt;Let me know if I'm doing something wrong but this data doesn't generate the corrupt record column. See attached images.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 12:18:41 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107216#M42734</guid>
      <dc:creator>peter_ticker</dc:creator>
      <dc:date>2025-01-27T12:18:41Z</dc:date>
    </item>
    <item>
      <title>Re: XML Auto Loader rescuedDataColumn Doesn't Rescue Array Fields</title>
      <link>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107217#M42735</link>
      <description>&lt;P&gt;This column will not appear magically, if you don't add it to your target table &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;As an alternative, instead of looking at this table, you can also look directly at the source, e.g. replacing toTable with display&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 12:32:38 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107217#M42735</guid>
      <dc:creator>Witold</dc:creator>
      <dc:date>2025-01-27T12:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: XML Auto Loader rescuedDataColumn Doesn't Rescue Array Fields</title>
      <link>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107220#M42736</link>
      <description>&lt;P&gt;Result is the same with a display. The table didn't exist so the schema of the table was determined by the input. See attached image.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 12:36:36 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107220#M42736</guid>
      <dc:creator>peter_ticker</dc:creator>
      <dc:date>2025-01-27T12:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: XML Auto Loader rescuedDataColumn Doesn't Rescue Array Fields</title>
      <link>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107238#M42737</link>
      <description>&lt;P&gt;Ah, now I see what you did.&lt;/P&gt;&lt;P&gt;`rowTag` is not the root element, it's the element which describes your rows within the root element. In your case, Message is the root element, Attribute are the rows. Meaning, set rowTag to Attribute. And since Attribute itself doesn't contain any sub-elements, you also need to set valueTag to Attribute&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 13:29:35 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107238#M42737</guid>
      <dc:creator>Witold</dc:creator>
      <dc:date>2025-01-27T13:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: XML Auto Loader rescuedDataColumn Doesn't Rescue Array Fields</title>
      <link>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107239#M42738</link>
      <description>&lt;P&gt;No - I intended Message to be the element which describes rows. The example I set is one row of data containing a simple array field called Attribute.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 13:34:14 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107239#M42738</guid>
      <dc:creator>peter_ticker</dc:creator>
      <dc:date>2025-01-27T13:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: XML Auto Loader rescuedDataColumn Doesn't Rescue Array Fields</title>
      <link>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107241#M42739</link>
      <description>&lt;P&gt;Then your example XML is invalid, as an XML file has only one root element. Meaning, Message can only be there once. If Message is your row, then there needs to be another root element, e.g:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&amp;lt;Messages&amp;gt;&lt;BR /&gt;  &amp;lt;Message&amp;gt;&lt;BR /&gt;    &amp;lt;Attribute&amp;gt;1&amp;lt;/Attribute&amp;gt;&lt;BR /&gt;    &amp;lt;Attribute&amp;gt;2&amp;lt;/Attribute&amp;gt;&lt;BR /&gt;  &amp;lt;/Message&amp;gt;&lt;BR /&gt;&amp;lt;/Messages&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 13:45:07 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107241#M42739</guid>
      <dc:creator>Witold</dc:creator>
      <dc:date>2025-01-27T13:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: XML Auto Loader rescuedDataColumn Doesn't Rescue Array Fields</title>
      <link>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107243#M42741</link>
      <description>&lt;P&gt;I'm not sure what your concern is. I could've encapsulated the whole thing in another root element but we receive XML files with one row per file so there is no need for a root element.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 13:50:59 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107243#M42741</guid>
      <dc:creator>peter_ticker</dc:creator>
      <dc:date>2025-01-27T13:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: XML Auto Loader rescuedDataColumn Doesn't Rescue Array Fields</title>
      <link>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107249#M42745</link>
      <description>&lt;P&gt;Let me rephrase it. You can't use Message as the rowTag, because it's the root element. rowTag implies that it's a tag within the root element, which might occur multiple times. Check the docs around &lt;A href="https://learn.microsoft.com/en-us/azure/databricks/query/formats/xml" target="_self"&gt;reading and write XML files&lt;/A&gt;, there you'll find examples which include a root tag (books) and row tags (book). If you check on this page the docs of &lt;A href="https://learn.microsoft.com/en-us/azure/databricks/query/formats/xml#from_xml" target="_self"&gt;from_xml&lt;/A&gt;, you'll see that "rowTag option is not applicable" due the exact same reason: You read just a single record.&lt;/P&gt;&lt;P&gt;To solve your issue, you either need to introduce another root tag (which I read is not an option for you), or to find another row tag, which might be Attribute. I hope it helps!&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 14:18:35 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/xml-auto-loader-rescueddatacolumn-doesn-t-rescue-array-fields/m-p/107249#M42745</guid>
      <dc:creator>Witold</dc:creator>
      <dc:date>2025-01-27T14:18:35Z</dc:date>
    </item>
  </channel>
</rss>

