<?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 I'm trying to understand if predicate pushdown is supported when using the DESCRIBE HISTORY command in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/i-m-trying-to-understand-if-predicate-pushdown-is-supported-when/m-p/122239#M46710</link>
    <description>&lt;P&gt;I'm trying to understand if predicate pushdown is supported when using the DESCRIBE HISTORY command on a Delta table in Databricks.&lt;/P&gt;</description>
    <pubDate>Thu, 19 Jun 2025 11:09:32 GMT</pubDate>
    <dc:creator>saicharandeepb</dc:creator>
    <dc:date>2025-06-19T11:09:32Z</dc:date>
    <item>
      <title>I'm trying to understand if predicate pushdown is supported when using the DESCRIBE HISTORY command</title>
      <link>https://community.databricks.com/t5/data-engineering/i-m-trying-to-understand-if-predicate-pushdown-is-supported-when/m-p/122239#M46710</link>
      <description>&lt;P&gt;I'm trying to understand if predicate pushdown is supported when using the DESCRIBE HISTORY command on a Delta table in Databricks.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jun 2025 11:09:32 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/i-m-trying-to-understand-if-predicate-pushdown-is-supported-when/m-p/122239#M46710</guid>
      <dc:creator>saicharandeepb</dc:creator>
      <dc:date>2025-06-19T11:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: I'm trying to understand if predicate pushdown is supported when using the DESCRIBE HISTORY comm</title>
      <link>https://community.databricks.com/t5/data-engineering/i-m-trying-to-understand-if-predicate-pushdown-is-supported-when/m-p/122277#M46727</link>
      <description>&lt;P&gt;&lt;BR /&gt;`DESCRIBE HISTORY` on a Delta table in Databricks does **not support predicate pushdown** in the same way as regular SQL queries on data tables.&lt;/P&gt;&lt;P&gt;This is because `DESCRIBE HISTORY` is a **metadata operation** that reads the Delta log files to return table version history. While you can apply filters like:&lt;/P&gt;&lt;P&gt;```sql&lt;BR /&gt;SELECT * FROM (DESCRIBE HISTORY delta.`/path/to/table`) WHERE userName = 'xyz'&lt;BR /&gt;```&lt;/P&gt;&lt;P&gt;the filter is applied **after** the metadata is retrieved — not during the log scanning. So there’s **no performance gain** from the filter in terms of pushdown.&lt;/P&gt;&lt;P&gt;If you're dealing with a large number of table versions, it's better to use:&lt;/P&gt;&lt;P&gt;```sql&lt;BR /&gt;DESCRIBE HISTORY delta.`/path/to/table` LIMIT 10;&lt;BR /&gt;```&lt;/P&gt;&lt;P&gt;to limit how much history is read.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jun 2025 17:08:30 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/i-m-trying-to-understand-if-predicate-pushdown-is-supported-when/m-p/122277#M46727</guid>
      <dc:creator>Yogesh_Verma_</dc:creator>
      <dc:date>2025-06-19T17:08:30Z</dc:date>
    </item>
  </channel>
</rss>

