This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/datafusion-site.git


The following commit(s) were added to refs/heads/asf-staging by this push:
     new fe8bfa2  Commit build products
fe8bfa2 is described below

commit fe8bfa279329ecc745aa2ceda0b3681b3433a858
Author: Build Pelican (action) <[email protected]>
AuthorDate: Fri Jan 23 00:50:54 2026 +0000

    Commit build products
---
 blog/2026/01/08/datafusion-52.0.0/index.html | 54 +++++++++-------------------
 blog/feeds/all-en.atom.xml                   | 40 +++++++--------------
 blog/feeds/blog.atom.xml                     | 40 +++++++--------------
 blog/feeds/pmc.atom.xml                      | 40 +++++++--------------
 4 files changed, 52 insertions(+), 122 deletions(-)

diff --git a/blog/2026/01/08/datafusion-52.0.0/index.html 
b/blog/2026/01/08/datafusion-52.0.0/index.html
index 88c4c1a..88880c8 100644
--- a/blog/2026/01/08/datafusion-52.0.0/index.html
+++ b/blog/2026/01/08/datafusion-52.0.0/index.html
@@ -49,12 +49,11 @@
 <li><a href="#performance-improvements">Performance Improvements 🚀</a><ul>
 <li><a href="#faster-case-expressions">Faster CASE Expressions</a></li>
 <li><a href="#new-merge-join">New Merge Join</a></li>
-</ul>
-</li>
-<li><a href="#mbutrovich-httpsgithubcommbutrovich">[mbutrovich]: 
https://github.com/mbutrovich</a><ul>
 <li><a href="#rewritten-merge-join">Rewritten merge join</a></li>
 <li><a href="#caching-improvements">Caching Improvements</a></li>
 <li><a href="#improved-hash-join-filter-pushdown">Improved Hash Join Filter 
Pushdown</a></li>
+</ul>
+</li>
 <li><a href="#major-features">Major Features ✨</a><ul>
 <li><a href="#arrow-ipc-stream-file-support">Arrow IPC Stream file 
support</a></li>
 <li><a href="#more-extensible-sql-planning-with-relationplanner">More 
Extensible SQL Planning with RelationPlanner</a></li>
@@ -68,8 +67,6 @@
 <li><a href="#about-datafusion">About DataFusion</a></li>
 <li><a href="#how-to-get-involved">How to Get Involved</a></li>
 </ul>
-</li>
-</ul>
 </div>
         </aside>
 
@@ -118,10 +115,8 @@ improved <code>CASE</code> evaluation significantly. 
Related PRs <a href="https:
 speedups of three orders of magnitude in some pathological cases such as the
 case in <a 
href="https://github.com/apache/datafusion/issues/18487";>#18487</a>, which also 
affected <a href="https://datafusion.apache.org/comet/";>Apache Comet</a> 
workloads. Benchmarks in
 <a href="https://github.com/apache/datafusion/pull/18875";>#18875</a> show 
dramatic gains for TPC-H Q21 (minutes to milliseconds) while
-leaving other queries unchanged or modestly faster. Thanks to [mbutrovich] for
+leaving other queries unchanged or modestly faster. Thanks to <a 
href="https://github.com/mbutrovich";>mbutrovich</a> for
 the implementation and reviews from <a 
href="https://github.com/Dandandan";>Dandandan</a>.</p>
-<p>&lt;&lt;&lt;&lt;&lt;&lt;&lt; HEAD</p>
-<h1 id="mbutrovich-httpsgithubcommbutrovich">[mbutrovich]: 
https://github.com/mbutrovich<a class="headerlink" 
href="#mbutrovich-httpsgithubcommbutrovich" title="Permanent link">¶</a></h1>
 <h3 id="rewritten-merge-join">Rewritten merge join<a class="headerlink" 
href="#rewritten-merge-join" title="Permanent link">¶</a></h3>
 <p>DataFusion 52 includes a rewrite of the sort-merge join (SMJ) output 
buffering to
 avoid excessive <code>concat_batches</code> work and to use 
<code>BatchCoalescer</code> internally and
@@ -130,26 +125,11 @@ LeftAnti join case in <a 
href="https://github.com/apache/datafusion/issues/18487
 SMJ. Benchmarks in <a 
href="https://github.com/apache/datafusion/pull/18875";>#18875</a> show dramatic 
gains for TPC-H Q21 (moving from
 minutes to milliseconds) while leaving most other queries unchanged or modestly
 faster, and the update is fully internal with no user-facing API changes.</p>
-<blockquote>
-<blockquote>
-<blockquote>
-<blockquote>
-<blockquote>
-<blockquote>
-<blockquote>
-<p>ccc5d4296951810f48e133fe70948d34c4b4f9bd</p>
-</blockquote>
-</blockquote>
-</blockquote>
-</blockquote>
-</blockquote>
-</blockquote>
-</blockquote>
 <h3 id="caching-improvements">Caching Improvements<a class="headerlink" 
href="#caching-improvements" title="Permanent link">¶</a></h3>
 <p>This release also includes several additional caching improvements.</p>
-<p>First it includes a new statistics cache for Parquet Metadata that avoids 
repeatedly
-(re)calculating statistics for Parquet backed files. This significantly 
improves
-planning time for certain queries. You can see the contents of the new cache 
using the
+<p>A new statistics cache for Parquet Metadata avoids repeatedly 
(re)calculating
+statistics for Parquet backed files. This significantly improves planning time
+for certain queries. You can see the contents of the new cache using the
 <a 
href="https://datafusion.apache.org/user-guide/cli/functions.html#statistics-cache";>statistics_cache</a>
 function in the CLI:</p>
 <pre><code class="language-sql">select * from statistics_cache();
 
+------------------+---------------------+-----------------+------------------------+---------+-----------------+-------------+--------------------+-----------------------+
@@ -161,8 +141,8 @@ planning time for certain queries. You can see the contents 
of the new cache usi
 <p>Thanks to <a href="https://github.com/bharath-techie";>bharath-techie</a> 
and <a href="https://github.com/nuno-faria";>nuno-faria</a> for implementing the 
statistics cache,
 with reviews from <a href="https://github.com/martin-g";>martin-g</a>, <a 
href="https://github.com/alamb";>alamb</a>, and <a 
href="https://github.com/alchemist51";>alchemist51</a>.
 Related PRs: <a 
href="https://github.com/apache/datafusion/pull/18971";>#18971</a>, <a 
href="https://github.com/apache/datafusion/pull/19054";>#19054</a></p>
-<p>It also includes a prefix-aware list-files cache by default which 
accelerates
-evaluating partition predicates for Hive partitioned tables.</p>
+<p>A prefix-aware list-files cache accelerates evaluating partition predicates 
for
+Hive partitioned tables.</p>
 <pre><code class="language-sql">-- Read the hive partitioned dataset from 
Overture Maps (100s of Parquet files)
 CREATE EXTERNAL TABLE overturemaps
 STORED AS PARQUET LOCATION 's3://overturemaps-us-west-2/release/2025-12-17.0/';
@@ -199,7 +179,7 @@ DataFusion 52 extends the optimization (<a 
href="https://github.com/apache/dataf
 build size is small such as when the join is very selective. The 
<code>IN</code> list is
 pushed down to the probe side scan and is used to prune files, row groups, and
 individual rows.  Thanks to <a href="https://github.com/adriangb";>adriangb</a> 
for implementing this feature, with
-reviews from <a href="https://github.com/LiaCastaneda";>LiaCastaneda</a>, <a 
href="https://github.com/asolimando";>asolimando</a>, <a 
href="https://github.com/comphead";>comphead</a>, and [mbutrovich].</p>
+reviews from <a href="https://github.com/LiaCastaneda";>LiaCastaneda</a>, <a 
href="https://github.com/asolimando";>asolimando</a>, <a 
href="https://github.com/comphead";>comphead</a>, and <a 
href="https://github.com/mbutrovich";>mbutrovich</a>.</p>
 <h2 id="major-features">Major Features ✨<a class="headerlink" 
href="#major-features" title="Permanent link">¶</a></h2>
 <h3 id="arrow-ipc-stream-file-support">Arrow IPC Stream file support<a 
class="headerlink" href="#arrow-ipc-stream-file-support" title="Permanent 
link">¶</a></h3>
 <p>DataFusion can now read Arrow IPC stream files (<a 
href="https://github.com/apache/datafusion/pull/18457";>#18457</a>). This expands
@@ -230,15 +210,16 @@ design. Related PRs: <a 
href="https://github.com/apache/datafusion/pull/17843";>#
 <h3 id="expression-evaluation-pushdown-to-scans">Expression Evaluation 
Pushdown to Scans<a class="headerlink" 
href="#expression-evaluation-pushdown-to-scans" title="Permanent 
link">¶</a></h3>
 <p>DataFusion now pushes down expression evaluation into TableProviders using 
 <a 
href="https://docs.rs/datafusion/52.0.0/datafusion/physical_expr_adapter/trait.PhysicalExprAdapter.html";>PhysicalExprAdapter</a>,
 replacing the older SchemaAdapter approach (<a 
href="https://github.com/apache/datafusion/issues/14993";>#14993</a>,
-<a href="https://github.com/apache/datafusion/issues/16800";>#16800</a>). This 
work means predicates and expressions can be customized for each
+<a href="https://github.com/apache/datafusion/issues/16800";>#16800</a>). 
Predicates and expressions can now be customized for each
 individual file schema, opening additional optimization such as support for
 <a href="https://github.com/apache/datafusion/issues/16116";>Variant 
shredding</a>. Thanks to <a href="https://github.com/adriangb";>adriangb</a> for 
implementing PhysicalExprAdapter
 and reworking pushdown to use it. Related PRs: <a 
href="https://github.com/apache/datafusion/pull/18998";>#18998</a>, <a 
href="https://github.com/apache/datafusion/pull/19345";>#19345</a></p>
 <h3 id="sort-pushdown-to-scans">Sort Pushdown to Scans<a class="headerlink" 
href="#sort-pushdown-to-scans" title="Permanent link">¶</a></h3>
-<p>DataFusion can now push sorts all the way to data sources (<a 
href="https://github.com/apache/datafusion/issues/10433";>#10433</a>, <a 
href="https://github.com/apache/datafusion/pull/19064";>#19064</a>).
+<p>DataFusion can now push sorts into data sources (<a 
href="https://github.com/apache/datafusion/issues/10433";>#10433</a>, <a 
href="https://github.com/apache/datafusion/pull/19064";>#19064</a>).
 This allows table provider implementations to take better advantage of 
existing sort 
-information such as to reorder files or row groups to satisfy 
<code>LIMIT</code> clauses more
-efficiently. Thanks to <a 
href="https://github.com/zhuqi-lucas";>zhuqi-lucas</a> for this feature. </p>
+information based on the query pattern, such as to reorder files or row groups 
to 
+satisfy <code>LIMIT</code> clauses more
+efficiently. Thanks to <a 
href="https://github.com/zhuqi-lucas";>zhuqi-lucas</a> and <a 
href="https://github.com/xudong963";>xudong963</a> for this feature. </p>
 <h3 
id="tableprovider-supports-delete-and-update-statements"><code>TableProvider</code>
 supports <code>DELETE</code> and <code>UPDATE</code> statements<a 
class="headerlink" href="#tableprovider-supports-delete-and-update-statements" 
title="Permanent link">¶</a></h3>
 <p>The <a 
href="https://docs.rs/datafusion/52.0.0/datafusion/datasource/trait.TableProvider.html";>TableProvider</a>
 trait now includes hooks for <code>DELETE</code> and <code>UPDATE</code>
 statements and the basic MemTable implements them (<a 
href="https://github.com/apache/datafusion/pull/19142";>#19142</a>). This lets
@@ -322,12 +303,11 @@ can find out how to reach us on the <a 
href="https://datafusion.apache.org/contr
 <li><a href="#performance-improvements">Performance Improvements 🚀</a><ul>
 <li><a href="#faster-case-expressions">Faster CASE Expressions</a></li>
 <li><a href="#new-merge-join">New Merge Join</a></li>
-</ul>
-</li>
-<li><a href="#mbutrovich-httpsgithubcommbutrovich">[mbutrovich]: 
https://github.com/mbutrovich</a><ul>
 <li><a href="#rewritten-merge-join">Rewritten merge join</a></li>
 <li><a href="#caching-improvements">Caching Improvements</a></li>
 <li><a href="#improved-hash-join-filter-pushdown">Improved Hash Join Filter 
Pushdown</a></li>
+</ul>
+</li>
 <li><a href="#major-features">Major Features ✨</a><ul>
 <li><a href="#arrow-ipc-stream-file-support">Arrow IPC Stream file 
support</a></li>
 <li><a href="#more-extensible-sql-planning-with-relationplanner">More 
Extensible SQL Planning with RelationPlanner</a></li>
@@ -341,8 +321,6 @@ can find out how to reach us on the <a 
href="https://datafusion.apache.org/contr
 <li><a href="#about-datafusion">About DataFusion</a></li>
 <li><a href="#how-to-get-involved">How to Get Involved</a></li>
 </ul>
-</li>
-</ul>
 </div>
       </aside>
     </div>
diff --git a/blog/feeds/all-en.atom.xml b/blog/feeds/all-en.atom.xml
index 74faa7a..10988e7 100644
--- a/blog/feeds/all-en.atom.xml
+++ b/blog/feeds/all-en.atom.xml
@@ -351,10 +351,8 @@ improved &lt;code&gt;CASE&lt;/code&gt; evaluation 
significantly. Related PRs &lt
 speedups of three orders of magnitude in some pathological cases such as the
 case in &lt;a 
href="https://github.com/apache/datafusion/issues/18487"&gt;#18487&lt;/a&gt;, 
which also affected &lt;a href="https://datafusion.apache.org/comet/"&gt;Apache 
Comet&lt;/a&gt; workloads. Benchmarks in
 &lt;a 
href="https://github.com/apache/datafusion/pull/18875"&gt;#18875&lt;/a&gt; show 
dramatic gains for TPC-H Q21 (minutes to milliseconds) while
-leaving other queries unchanged or modestly faster. Thanks to [mbutrovich] for
+leaving other queries unchanged or modestly faster. Thanks to &lt;a 
href="https://github.com/mbutrovich"&gt;mbutrovich&lt;/a&gt; for
 the implementation and reviews from &lt;a 
href="https://github.com/Dandandan"&gt;Dandandan&lt;/a&gt;.&lt;/p&gt;
-&lt;p&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt; 
HEAD&lt;/p&gt;
-&lt;h1 id="mbutrovich-httpsgithubcommbutrovich"&gt;[mbutrovich]: 
https://github.com/mbutrovich&lt;a class="headerlink" 
href="#mbutrovich-httpsgithubcommbutrovich" title="Permanent 
link"&gt;¶&lt;/a&gt;&lt;/h1&gt;
 &lt;h3 id="rewritten-merge-join"&gt;Rewritten merge join&lt;a 
class="headerlink" href="#rewritten-merge-join" title="Permanent 
link"&gt;¶&lt;/a&gt;&lt;/h3&gt;
 &lt;p&gt;DataFusion 52 includes a rewrite of the sort-merge join (SMJ) output 
buffering to
 avoid excessive &lt;code&gt;concat_batches&lt;/code&gt; work and to use 
&lt;code&gt;BatchCoalescer&lt;/code&gt; internally and
@@ -363,26 +361,11 @@ LeftAnti join case in &lt;a 
href="https://github.com/apache/datafusion/issues/18
 SMJ. Benchmarks in &lt;a 
href="https://github.com/apache/datafusion/pull/18875"&gt;#18875&lt;/a&gt; show 
dramatic gains for TPC-H Q21 (moving from
 minutes to milliseconds) while leaving most other queries unchanged or modestly
 faster, and the update is fully internal with no user-facing API 
changes.&lt;/p&gt;
-&lt;blockquote&gt;
-&lt;blockquote&gt;
-&lt;blockquote&gt;
-&lt;blockquote&gt;
-&lt;blockquote&gt;
-&lt;blockquote&gt;
-&lt;blockquote&gt;
-&lt;p&gt;ccc5d4296951810f48e133fe70948d34c4b4f9bd&lt;/p&gt;
-&lt;/blockquote&gt;
-&lt;/blockquote&gt;
-&lt;/blockquote&gt;
-&lt;/blockquote&gt;
-&lt;/blockquote&gt;
-&lt;/blockquote&gt;
-&lt;/blockquote&gt;
 &lt;h3 id="caching-improvements"&gt;Caching Improvements&lt;a 
class="headerlink" href="#caching-improvements" title="Permanent 
link"&gt;¶&lt;/a&gt;&lt;/h3&gt;
 &lt;p&gt;This release also includes several additional caching 
improvements.&lt;/p&gt;
-&lt;p&gt;First it includes a new statistics cache for Parquet Metadata that 
avoids repeatedly
-(re)calculating statistics for Parquet backed files. This significantly 
improves
-planning time for certain queries. You can see the contents of the new cache 
using the
+&lt;p&gt;A new statistics cache for Parquet Metadata avoids repeatedly 
(re)calculating
+statistics for Parquet backed files. This significantly improves planning time
+for certain queries. You can see the contents of the new cache using the
 &lt;a 
href="https://datafusion.apache.org/user-guide/cli/functions.html#statistics-cache"&gt;statistics_cache&lt;/a&gt;
 function in the CLI:&lt;/p&gt;
 &lt;pre&gt;&lt;code class="language-sql"&gt;select * from statistics_cache();
 
+------------------+---------------------+-----------------+------------------------+---------+-----------------+-------------+--------------------+-----------------------+
@@ -394,8 +377,8 @@ planning time for certain queries. You can see the contents 
of the new cache usi
 &lt;p&gt;Thanks to &lt;a 
href="https://github.com/bharath-techie"&gt;bharath-techie&lt;/a&gt; and &lt;a 
href="https://github.com/nuno-faria"&gt;nuno-faria&lt;/a&gt; for implementing 
the statistics cache,
 with reviews from &lt;a 
href="https://github.com/martin-g"&gt;martin-g&lt;/a&gt;, &lt;a 
href="https://github.com/alamb"&gt;alamb&lt;/a&gt;, and &lt;a 
href="https://github.com/alchemist51"&gt;alchemist51&lt;/a&gt;.
 Related PRs: &lt;a 
href="https://github.com/apache/datafusion/pull/18971"&gt;#18971&lt;/a&gt;, 
&lt;a 
href="https://github.com/apache/datafusion/pull/19054"&gt;#19054&lt;/a&gt;&lt;/p&gt;
-&lt;p&gt;It also includes a prefix-aware list-files cache by default which 
accelerates
-evaluating partition predicates for Hive partitioned tables.&lt;/p&gt;
+&lt;p&gt;A prefix-aware list-files cache accelerates evaluating partition 
predicates for
+Hive partitioned tables.&lt;/p&gt;
 &lt;pre&gt;&lt;code class="language-sql"&gt;-- Read the hive partitioned 
dataset from Overture Maps (100s of Parquet files)
 CREATE EXTERNAL TABLE overturemaps
 STORED AS PARQUET LOCATION 's3://overturemaps-us-west-2/release/2025-12-17.0/';
@@ -432,7 +415,7 @@ DataFusion 52 extends the optimization (&lt;a 
href="https://github.com/apache/da
 build size is small such as when the join is very selective. The 
&lt;code&gt;IN&lt;/code&gt; list is
 pushed down to the probe side scan and is used to prune files, row groups, and
 individual rows.  Thanks to &lt;a 
href="https://github.com/adriangb"&gt;adriangb&lt;/a&gt; for implementing this 
feature, with
-reviews from &lt;a 
href="https://github.com/LiaCastaneda"&gt;LiaCastaneda&lt;/a&gt;, &lt;a 
href="https://github.com/asolimando"&gt;asolimando&lt;/a&gt;, &lt;a 
href="https://github.com/comphead"&gt;comphead&lt;/a&gt;, and 
[mbutrovich].&lt;/p&gt;
+reviews from &lt;a 
href="https://github.com/LiaCastaneda"&gt;LiaCastaneda&lt;/a&gt;, &lt;a 
href="https://github.com/asolimando"&gt;asolimando&lt;/a&gt;, &lt;a 
href="https://github.com/comphead"&gt;comphead&lt;/a&gt;, and &lt;a 
href="https://github.com/mbutrovich"&gt;mbutrovich&lt;/a&gt;.&lt;/p&gt;
 &lt;h2 id="major-features"&gt;Major Features ✨&lt;a class="headerlink" 
href="#major-features" title="Permanent link"&gt;¶&lt;/a&gt;&lt;/h2&gt;
 &lt;h3 id="arrow-ipc-stream-file-support"&gt;Arrow IPC Stream file 
support&lt;a class="headerlink" href="#arrow-ipc-stream-file-support" 
title="Permanent link"&gt;¶&lt;/a&gt;&lt;/h3&gt;
 &lt;p&gt;DataFusion can now read Arrow IPC stream files (&lt;a 
href="https://github.com/apache/datafusion/pull/18457"&gt;#18457&lt;/a&gt;). 
This expands
@@ -463,15 +446,16 @@ design. Related PRs: &lt;a 
href="https://github.com/apache/datafusion/pull/17843
 &lt;h3 id="expression-evaluation-pushdown-to-scans"&gt;Expression Evaluation 
Pushdown to Scans&lt;a class="headerlink" 
href="#expression-evaluation-pushdown-to-scans" title="Permanent 
link"&gt;¶&lt;/a&gt;&lt;/h3&gt;
 &lt;p&gt;DataFusion now pushes down expression evaluation into TableProviders 
using 
 &lt;a 
href="https://docs.rs/datafusion/52.0.0/datafusion/physical_expr_adapter/trait.PhysicalExprAdapter.html"&gt;PhysicalExprAdapter&lt;/a&gt;,
 replacing the older SchemaAdapter approach (&lt;a 
href="https://github.com/apache/datafusion/issues/14993"&gt;#14993&lt;/a&gt;,
-&lt;a 
href="https://github.com/apache/datafusion/issues/16800"&gt;#16800&lt;/a&gt;). 
This work means predicates and expressions can be customized for each
+&lt;a 
href="https://github.com/apache/datafusion/issues/16800"&gt;#16800&lt;/a&gt;). 
Predicates and expressions can now be customized for each
 individual file schema, opening additional optimization such as support for
 &lt;a href="https://github.com/apache/datafusion/issues/16116"&gt;Variant 
shredding&lt;/a&gt;. Thanks to &lt;a 
href="https://github.com/adriangb"&gt;adriangb&lt;/a&gt; for implementing 
PhysicalExprAdapter
 and reworking pushdown to use it. Related PRs: &lt;a 
href="https://github.com/apache/datafusion/pull/18998"&gt;#18998&lt;/a&gt;, 
&lt;a 
href="https://github.com/apache/datafusion/pull/19345"&gt;#19345&lt;/a&gt;&lt;/p&gt;
 &lt;h3 id="sort-pushdown-to-scans"&gt;Sort Pushdown to Scans&lt;a 
class="headerlink" href="#sort-pushdown-to-scans" title="Permanent 
link"&gt;¶&lt;/a&gt;&lt;/h3&gt;
-&lt;p&gt;DataFusion can now push sorts all the way to data sources (&lt;a 
href="https://github.com/apache/datafusion/issues/10433"&gt;#10433&lt;/a&gt;, 
&lt;a 
href="https://github.com/apache/datafusion/pull/19064"&gt;#19064&lt;/a&gt;).
+&lt;p&gt;DataFusion can now push sorts into data sources (&lt;a 
href="https://github.com/apache/datafusion/issues/10433"&gt;#10433&lt;/a&gt;, 
&lt;a 
href="https://github.com/apache/datafusion/pull/19064"&gt;#19064&lt;/a&gt;).
 This allows table provider implementations to take better advantage of 
existing sort 
-information such as to reorder files or row groups to satisfy 
&lt;code&gt;LIMIT&lt;/code&gt; clauses more
-efficiently. Thanks to &lt;a 
href="https://github.com/zhuqi-lucas"&gt;zhuqi-lucas&lt;/a&gt; for this 
feature. &lt;/p&gt;
+information based on the query pattern, such as to reorder files or row groups 
to 
+satisfy &lt;code&gt;LIMIT&lt;/code&gt; clauses more
+efficiently. Thanks to &lt;a 
href="https://github.com/zhuqi-lucas"&gt;zhuqi-lucas&lt;/a&gt; and &lt;a 
href="https://github.com/xudong963"&gt;xudong963&lt;/a&gt; for this feature. 
&lt;/p&gt;
 &lt;h3 
id="tableprovider-supports-delete-and-update-statements"&gt;&lt;code&gt;TableProvider&lt;/code&gt;
 supports &lt;code&gt;DELETE&lt;/code&gt; and &lt;code&gt;UPDATE&lt;/code&gt; 
statements&lt;a class="headerlink" 
href="#tableprovider-supports-delete-and-update-statements" title="Permanent 
link"&gt;¶&lt;/a&gt;&lt;/h3&gt;
 &lt;p&gt;The &lt;a 
href="https://docs.rs/datafusion/52.0.0/datafusion/datasource/trait.TableProvider.html"&gt;TableProvider&lt;/a&gt;
 trait now includes hooks for &lt;code&gt;DELETE&lt;/code&gt; and 
&lt;code&gt;UPDATE&lt;/code&gt;
 statements and the basic MemTable implements them (&lt;a 
href="https://github.com/apache/datafusion/pull/19142"&gt;#19142&lt;/a&gt;). 
This lets
diff --git a/blog/feeds/blog.atom.xml b/blog/feeds/blog.atom.xml
index a169423..b5c7bad 100644
--- a/blog/feeds/blog.atom.xml
+++ b/blog/feeds/blog.atom.xml
@@ -351,10 +351,8 @@ improved &lt;code&gt;CASE&lt;/code&gt; evaluation 
significantly. Related PRs &lt
 speedups of three orders of magnitude in some pathological cases such as the
 case in &lt;a 
href="https://github.com/apache/datafusion/issues/18487"&gt;#18487&lt;/a&gt;, 
which also affected &lt;a href="https://datafusion.apache.org/comet/"&gt;Apache 
Comet&lt;/a&gt; workloads. Benchmarks in
 &lt;a 
href="https://github.com/apache/datafusion/pull/18875"&gt;#18875&lt;/a&gt; show 
dramatic gains for TPC-H Q21 (minutes to milliseconds) while
-leaving other queries unchanged or modestly faster. Thanks to [mbutrovich] for
+leaving other queries unchanged or modestly faster. Thanks to &lt;a 
href="https://github.com/mbutrovich"&gt;mbutrovich&lt;/a&gt; for
 the implementation and reviews from &lt;a 
href="https://github.com/Dandandan"&gt;Dandandan&lt;/a&gt;.&lt;/p&gt;
-&lt;p&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt; 
HEAD&lt;/p&gt;
-&lt;h1 id="mbutrovich-httpsgithubcommbutrovich"&gt;[mbutrovich]: 
https://github.com/mbutrovich&lt;a class="headerlink" 
href="#mbutrovich-httpsgithubcommbutrovich" title="Permanent 
link"&gt;¶&lt;/a&gt;&lt;/h1&gt;
 &lt;h3 id="rewritten-merge-join"&gt;Rewritten merge join&lt;a 
class="headerlink" href="#rewritten-merge-join" title="Permanent 
link"&gt;¶&lt;/a&gt;&lt;/h3&gt;
 &lt;p&gt;DataFusion 52 includes a rewrite of the sort-merge join (SMJ) output 
buffering to
 avoid excessive &lt;code&gt;concat_batches&lt;/code&gt; work and to use 
&lt;code&gt;BatchCoalescer&lt;/code&gt; internally and
@@ -363,26 +361,11 @@ LeftAnti join case in &lt;a 
href="https://github.com/apache/datafusion/issues/18
 SMJ. Benchmarks in &lt;a 
href="https://github.com/apache/datafusion/pull/18875"&gt;#18875&lt;/a&gt; show 
dramatic gains for TPC-H Q21 (moving from
 minutes to milliseconds) while leaving most other queries unchanged or modestly
 faster, and the update is fully internal with no user-facing API 
changes.&lt;/p&gt;
-&lt;blockquote&gt;
-&lt;blockquote&gt;
-&lt;blockquote&gt;
-&lt;blockquote&gt;
-&lt;blockquote&gt;
-&lt;blockquote&gt;
-&lt;blockquote&gt;
-&lt;p&gt;ccc5d4296951810f48e133fe70948d34c4b4f9bd&lt;/p&gt;
-&lt;/blockquote&gt;
-&lt;/blockquote&gt;
-&lt;/blockquote&gt;
-&lt;/blockquote&gt;
-&lt;/blockquote&gt;
-&lt;/blockquote&gt;
-&lt;/blockquote&gt;
 &lt;h3 id="caching-improvements"&gt;Caching Improvements&lt;a 
class="headerlink" href="#caching-improvements" title="Permanent 
link"&gt;¶&lt;/a&gt;&lt;/h3&gt;
 &lt;p&gt;This release also includes several additional caching 
improvements.&lt;/p&gt;
-&lt;p&gt;First it includes a new statistics cache for Parquet Metadata that 
avoids repeatedly
-(re)calculating statistics for Parquet backed files. This significantly 
improves
-planning time for certain queries. You can see the contents of the new cache 
using the
+&lt;p&gt;A new statistics cache for Parquet Metadata avoids repeatedly 
(re)calculating
+statistics for Parquet backed files. This significantly improves planning time
+for certain queries. You can see the contents of the new cache using the
 &lt;a 
href="https://datafusion.apache.org/user-guide/cli/functions.html#statistics-cache"&gt;statistics_cache&lt;/a&gt;
 function in the CLI:&lt;/p&gt;
 &lt;pre&gt;&lt;code class="language-sql"&gt;select * from statistics_cache();
 
+------------------+---------------------+-----------------+------------------------+---------+-----------------+-------------+--------------------+-----------------------+
@@ -394,8 +377,8 @@ planning time for certain queries. You can see the contents 
of the new cache usi
 &lt;p&gt;Thanks to &lt;a 
href="https://github.com/bharath-techie"&gt;bharath-techie&lt;/a&gt; and &lt;a 
href="https://github.com/nuno-faria"&gt;nuno-faria&lt;/a&gt; for implementing 
the statistics cache,
 with reviews from &lt;a 
href="https://github.com/martin-g"&gt;martin-g&lt;/a&gt;, &lt;a 
href="https://github.com/alamb"&gt;alamb&lt;/a&gt;, and &lt;a 
href="https://github.com/alchemist51"&gt;alchemist51&lt;/a&gt;.
 Related PRs: &lt;a 
href="https://github.com/apache/datafusion/pull/18971"&gt;#18971&lt;/a&gt;, 
&lt;a 
href="https://github.com/apache/datafusion/pull/19054"&gt;#19054&lt;/a&gt;&lt;/p&gt;
-&lt;p&gt;It also includes a prefix-aware list-files cache by default which 
accelerates
-evaluating partition predicates for Hive partitioned tables.&lt;/p&gt;
+&lt;p&gt;A prefix-aware list-files cache accelerates evaluating partition 
predicates for
+Hive partitioned tables.&lt;/p&gt;
 &lt;pre&gt;&lt;code class="language-sql"&gt;-- Read the hive partitioned 
dataset from Overture Maps (100s of Parquet files)
 CREATE EXTERNAL TABLE overturemaps
 STORED AS PARQUET LOCATION 's3://overturemaps-us-west-2/release/2025-12-17.0/';
@@ -432,7 +415,7 @@ DataFusion 52 extends the optimization (&lt;a 
href="https://github.com/apache/da
 build size is small such as when the join is very selective. The 
&lt;code&gt;IN&lt;/code&gt; list is
 pushed down to the probe side scan and is used to prune files, row groups, and
 individual rows.  Thanks to &lt;a 
href="https://github.com/adriangb"&gt;adriangb&lt;/a&gt; for implementing this 
feature, with
-reviews from &lt;a 
href="https://github.com/LiaCastaneda"&gt;LiaCastaneda&lt;/a&gt;, &lt;a 
href="https://github.com/asolimando"&gt;asolimando&lt;/a&gt;, &lt;a 
href="https://github.com/comphead"&gt;comphead&lt;/a&gt;, and 
[mbutrovich].&lt;/p&gt;
+reviews from &lt;a 
href="https://github.com/LiaCastaneda"&gt;LiaCastaneda&lt;/a&gt;, &lt;a 
href="https://github.com/asolimando"&gt;asolimando&lt;/a&gt;, &lt;a 
href="https://github.com/comphead"&gt;comphead&lt;/a&gt;, and &lt;a 
href="https://github.com/mbutrovich"&gt;mbutrovich&lt;/a&gt;.&lt;/p&gt;
 &lt;h2 id="major-features"&gt;Major Features ✨&lt;a class="headerlink" 
href="#major-features" title="Permanent link"&gt;¶&lt;/a&gt;&lt;/h2&gt;
 &lt;h3 id="arrow-ipc-stream-file-support"&gt;Arrow IPC Stream file 
support&lt;a class="headerlink" href="#arrow-ipc-stream-file-support" 
title="Permanent link"&gt;¶&lt;/a&gt;&lt;/h3&gt;
 &lt;p&gt;DataFusion can now read Arrow IPC stream files (&lt;a 
href="https://github.com/apache/datafusion/pull/18457"&gt;#18457&lt;/a&gt;). 
This expands
@@ -463,15 +446,16 @@ design. Related PRs: &lt;a 
href="https://github.com/apache/datafusion/pull/17843
 &lt;h3 id="expression-evaluation-pushdown-to-scans"&gt;Expression Evaluation 
Pushdown to Scans&lt;a class="headerlink" 
href="#expression-evaluation-pushdown-to-scans" title="Permanent 
link"&gt;¶&lt;/a&gt;&lt;/h3&gt;
 &lt;p&gt;DataFusion now pushes down expression evaluation into TableProviders 
using 
 &lt;a 
href="https://docs.rs/datafusion/52.0.0/datafusion/physical_expr_adapter/trait.PhysicalExprAdapter.html"&gt;PhysicalExprAdapter&lt;/a&gt;,
 replacing the older SchemaAdapter approach (&lt;a 
href="https://github.com/apache/datafusion/issues/14993"&gt;#14993&lt;/a&gt;,
-&lt;a 
href="https://github.com/apache/datafusion/issues/16800"&gt;#16800&lt;/a&gt;). 
This work means predicates and expressions can be customized for each
+&lt;a 
href="https://github.com/apache/datafusion/issues/16800"&gt;#16800&lt;/a&gt;). 
Predicates and expressions can now be customized for each
 individual file schema, opening additional optimization such as support for
 &lt;a href="https://github.com/apache/datafusion/issues/16116"&gt;Variant 
shredding&lt;/a&gt;. Thanks to &lt;a 
href="https://github.com/adriangb"&gt;adriangb&lt;/a&gt; for implementing 
PhysicalExprAdapter
 and reworking pushdown to use it. Related PRs: &lt;a 
href="https://github.com/apache/datafusion/pull/18998"&gt;#18998&lt;/a&gt;, 
&lt;a 
href="https://github.com/apache/datafusion/pull/19345"&gt;#19345&lt;/a&gt;&lt;/p&gt;
 &lt;h3 id="sort-pushdown-to-scans"&gt;Sort Pushdown to Scans&lt;a 
class="headerlink" href="#sort-pushdown-to-scans" title="Permanent 
link"&gt;¶&lt;/a&gt;&lt;/h3&gt;
-&lt;p&gt;DataFusion can now push sorts all the way to data sources (&lt;a 
href="https://github.com/apache/datafusion/issues/10433"&gt;#10433&lt;/a&gt;, 
&lt;a 
href="https://github.com/apache/datafusion/pull/19064"&gt;#19064&lt;/a&gt;).
+&lt;p&gt;DataFusion can now push sorts into data sources (&lt;a 
href="https://github.com/apache/datafusion/issues/10433"&gt;#10433&lt;/a&gt;, 
&lt;a 
href="https://github.com/apache/datafusion/pull/19064"&gt;#19064&lt;/a&gt;).
 This allows table provider implementations to take better advantage of 
existing sort 
-information such as to reorder files or row groups to satisfy 
&lt;code&gt;LIMIT&lt;/code&gt; clauses more
-efficiently. Thanks to &lt;a 
href="https://github.com/zhuqi-lucas"&gt;zhuqi-lucas&lt;/a&gt; for this 
feature. &lt;/p&gt;
+information based on the query pattern, such as to reorder files or row groups 
to 
+satisfy &lt;code&gt;LIMIT&lt;/code&gt; clauses more
+efficiently. Thanks to &lt;a 
href="https://github.com/zhuqi-lucas"&gt;zhuqi-lucas&lt;/a&gt; and &lt;a 
href="https://github.com/xudong963"&gt;xudong963&lt;/a&gt; for this feature. 
&lt;/p&gt;
 &lt;h3 
id="tableprovider-supports-delete-and-update-statements"&gt;&lt;code&gt;TableProvider&lt;/code&gt;
 supports &lt;code&gt;DELETE&lt;/code&gt; and &lt;code&gt;UPDATE&lt;/code&gt; 
statements&lt;a class="headerlink" 
href="#tableprovider-supports-delete-and-update-statements" title="Permanent 
link"&gt;¶&lt;/a&gt;&lt;/h3&gt;
 &lt;p&gt;The &lt;a 
href="https://docs.rs/datafusion/52.0.0/datafusion/datasource/trait.TableProvider.html"&gt;TableProvider&lt;/a&gt;
 trait now includes hooks for &lt;code&gt;DELETE&lt;/code&gt; and 
&lt;code&gt;UPDATE&lt;/code&gt;
 statements and the basic MemTable implements them (&lt;a 
href="https://github.com/apache/datafusion/pull/19142"&gt;#19142&lt;/a&gt;). 
This lets
diff --git a/blog/feeds/pmc.atom.xml b/blog/feeds/pmc.atom.xml
index 598d1e6..4e50ef5 100644
--- a/blog/feeds/pmc.atom.xml
+++ b/blog/feeds/pmc.atom.xml
@@ -67,10 +67,8 @@ improved &lt;code&gt;CASE&lt;/code&gt; evaluation 
significantly. Related PRs &lt
 speedups of three orders of magnitude in some pathological cases such as the
 case in &lt;a 
href="https://github.com/apache/datafusion/issues/18487"&gt;#18487&lt;/a&gt;, 
which also affected &lt;a href="https://datafusion.apache.org/comet/"&gt;Apache 
Comet&lt;/a&gt; workloads. Benchmarks in
 &lt;a 
href="https://github.com/apache/datafusion/pull/18875"&gt;#18875&lt;/a&gt; show 
dramatic gains for TPC-H Q21 (minutes to milliseconds) while
-leaving other queries unchanged or modestly faster. Thanks to [mbutrovich] for
+leaving other queries unchanged or modestly faster. Thanks to &lt;a 
href="https://github.com/mbutrovich"&gt;mbutrovich&lt;/a&gt; for
 the implementation and reviews from &lt;a 
href="https://github.com/Dandandan"&gt;Dandandan&lt;/a&gt;.&lt;/p&gt;
-&lt;p&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt; 
HEAD&lt;/p&gt;
-&lt;h1 id="mbutrovich-httpsgithubcommbutrovich"&gt;[mbutrovich]: 
https://github.com/mbutrovich&lt;a class="headerlink" 
href="#mbutrovich-httpsgithubcommbutrovich" title="Permanent 
link"&gt;¶&lt;/a&gt;&lt;/h1&gt;
 &lt;h3 id="rewritten-merge-join"&gt;Rewritten merge join&lt;a 
class="headerlink" href="#rewritten-merge-join" title="Permanent 
link"&gt;¶&lt;/a&gt;&lt;/h3&gt;
 &lt;p&gt;DataFusion 52 includes a rewrite of the sort-merge join (SMJ) output 
buffering to
 avoid excessive &lt;code&gt;concat_batches&lt;/code&gt; work and to use 
&lt;code&gt;BatchCoalescer&lt;/code&gt; internally and
@@ -79,26 +77,11 @@ LeftAnti join case in &lt;a 
href="https://github.com/apache/datafusion/issues/18
 SMJ. Benchmarks in &lt;a 
href="https://github.com/apache/datafusion/pull/18875"&gt;#18875&lt;/a&gt; show 
dramatic gains for TPC-H Q21 (moving from
 minutes to milliseconds) while leaving most other queries unchanged or modestly
 faster, and the update is fully internal with no user-facing API 
changes.&lt;/p&gt;
-&lt;blockquote&gt;
-&lt;blockquote&gt;
-&lt;blockquote&gt;
-&lt;blockquote&gt;
-&lt;blockquote&gt;
-&lt;blockquote&gt;
-&lt;blockquote&gt;
-&lt;p&gt;ccc5d4296951810f48e133fe70948d34c4b4f9bd&lt;/p&gt;
-&lt;/blockquote&gt;
-&lt;/blockquote&gt;
-&lt;/blockquote&gt;
-&lt;/blockquote&gt;
-&lt;/blockquote&gt;
-&lt;/blockquote&gt;
-&lt;/blockquote&gt;
 &lt;h3 id="caching-improvements"&gt;Caching Improvements&lt;a 
class="headerlink" href="#caching-improvements" title="Permanent 
link"&gt;¶&lt;/a&gt;&lt;/h3&gt;
 &lt;p&gt;This release also includes several additional caching 
improvements.&lt;/p&gt;
-&lt;p&gt;First it includes a new statistics cache for Parquet Metadata that 
avoids repeatedly
-(re)calculating statistics for Parquet backed files. This significantly 
improves
-planning time for certain queries. You can see the contents of the new cache 
using the
+&lt;p&gt;A new statistics cache for Parquet Metadata avoids repeatedly 
(re)calculating
+statistics for Parquet backed files. This significantly improves planning time
+for certain queries. You can see the contents of the new cache using the
 &lt;a 
href="https://datafusion.apache.org/user-guide/cli/functions.html#statistics-cache"&gt;statistics_cache&lt;/a&gt;
 function in the CLI:&lt;/p&gt;
 &lt;pre&gt;&lt;code class="language-sql"&gt;select * from statistics_cache();
 
+------------------+---------------------+-----------------+------------------------+---------+-----------------+-------------+--------------------+-----------------------+
@@ -110,8 +93,8 @@ planning time for certain queries. You can see the contents 
of the new cache usi
 &lt;p&gt;Thanks to &lt;a 
href="https://github.com/bharath-techie"&gt;bharath-techie&lt;/a&gt; and &lt;a 
href="https://github.com/nuno-faria"&gt;nuno-faria&lt;/a&gt; for implementing 
the statistics cache,
 with reviews from &lt;a 
href="https://github.com/martin-g"&gt;martin-g&lt;/a&gt;, &lt;a 
href="https://github.com/alamb"&gt;alamb&lt;/a&gt;, and &lt;a 
href="https://github.com/alchemist51"&gt;alchemist51&lt;/a&gt;.
 Related PRs: &lt;a 
href="https://github.com/apache/datafusion/pull/18971"&gt;#18971&lt;/a&gt;, 
&lt;a 
href="https://github.com/apache/datafusion/pull/19054"&gt;#19054&lt;/a&gt;&lt;/p&gt;
-&lt;p&gt;It also includes a prefix-aware list-files cache by default which 
accelerates
-evaluating partition predicates for Hive partitioned tables.&lt;/p&gt;
+&lt;p&gt;A prefix-aware list-files cache accelerates evaluating partition 
predicates for
+Hive partitioned tables.&lt;/p&gt;
 &lt;pre&gt;&lt;code class="language-sql"&gt;-- Read the hive partitioned 
dataset from Overture Maps (100s of Parquet files)
 CREATE EXTERNAL TABLE overturemaps
 STORED AS PARQUET LOCATION 's3://overturemaps-us-west-2/release/2025-12-17.0/';
@@ -148,7 +131,7 @@ DataFusion 52 extends the optimization (&lt;a 
href="https://github.com/apache/da
 build size is small such as when the join is very selective. The 
&lt;code&gt;IN&lt;/code&gt; list is
 pushed down to the probe side scan and is used to prune files, row groups, and
 individual rows.  Thanks to &lt;a 
href="https://github.com/adriangb"&gt;adriangb&lt;/a&gt; for implementing this 
feature, with
-reviews from &lt;a 
href="https://github.com/LiaCastaneda"&gt;LiaCastaneda&lt;/a&gt;, &lt;a 
href="https://github.com/asolimando"&gt;asolimando&lt;/a&gt;, &lt;a 
href="https://github.com/comphead"&gt;comphead&lt;/a&gt;, and 
[mbutrovich].&lt;/p&gt;
+reviews from &lt;a 
href="https://github.com/LiaCastaneda"&gt;LiaCastaneda&lt;/a&gt;, &lt;a 
href="https://github.com/asolimando"&gt;asolimando&lt;/a&gt;, &lt;a 
href="https://github.com/comphead"&gt;comphead&lt;/a&gt;, and &lt;a 
href="https://github.com/mbutrovich"&gt;mbutrovich&lt;/a&gt;.&lt;/p&gt;
 &lt;h2 id="major-features"&gt;Major Features ✨&lt;a class="headerlink" 
href="#major-features" title="Permanent link"&gt;¶&lt;/a&gt;&lt;/h2&gt;
 &lt;h3 id="arrow-ipc-stream-file-support"&gt;Arrow IPC Stream file 
support&lt;a class="headerlink" href="#arrow-ipc-stream-file-support" 
title="Permanent link"&gt;¶&lt;/a&gt;&lt;/h3&gt;
 &lt;p&gt;DataFusion can now read Arrow IPC stream files (&lt;a 
href="https://github.com/apache/datafusion/pull/18457"&gt;#18457&lt;/a&gt;). 
This expands
@@ -179,15 +162,16 @@ design. Related PRs: &lt;a 
href="https://github.com/apache/datafusion/pull/17843
 &lt;h3 id="expression-evaluation-pushdown-to-scans"&gt;Expression Evaluation 
Pushdown to Scans&lt;a class="headerlink" 
href="#expression-evaluation-pushdown-to-scans" title="Permanent 
link"&gt;¶&lt;/a&gt;&lt;/h3&gt;
 &lt;p&gt;DataFusion now pushes down expression evaluation into TableProviders 
using 
 &lt;a 
href="https://docs.rs/datafusion/52.0.0/datafusion/physical_expr_adapter/trait.PhysicalExprAdapter.html"&gt;PhysicalExprAdapter&lt;/a&gt;,
 replacing the older SchemaAdapter approach (&lt;a 
href="https://github.com/apache/datafusion/issues/14993"&gt;#14993&lt;/a&gt;,
-&lt;a 
href="https://github.com/apache/datafusion/issues/16800"&gt;#16800&lt;/a&gt;). 
This work means predicates and expressions can be customized for each
+&lt;a 
href="https://github.com/apache/datafusion/issues/16800"&gt;#16800&lt;/a&gt;). 
Predicates and expressions can now be customized for each
 individual file schema, opening additional optimization such as support for
 &lt;a href="https://github.com/apache/datafusion/issues/16116"&gt;Variant 
shredding&lt;/a&gt;. Thanks to &lt;a 
href="https://github.com/adriangb"&gt;adriangb&lt;/a&gt; for implementing 
PhysicalExprAdapter
 and reworking pushdown to use it. Related PRs: &lt;a 
href="https://github.com/apache/datafusion/pull/18998"&gt;#18998&lt;/a&gt;, 
&lt;a 
href="https://github.com/apache/datafusion/pull/19345"&gt;#19345&lt;/a&gt;&lt;/p&gt;
 &lt;h3 id="sort-pushdown-to-scans"&gt;Sort Pushdown to Scans&lt;a 
class="headerlink" href="#sort-pushdown-to-scans" title="Permanent 
link"&gt;¶&lt;/a&gt;&lt;/h3&gt;
-&lt;p&gt;DataFusion can now push sorts all the way to data sources (&lt;a 
href="https://github.com/apache/datafusion/issues/10433"&gt;#10433&lt;/a&gt;, 
&lt;a 
href="https://github.com/apache/datafusion/pull/19064"&gt;#19064&lt;/a&gt;).
+&lt;p&gt;DataFusion can now push sorts into data sources (&lt;a 
href="https://github.com/apache/datafusion/issues/10433"&gt;#10433&lt;/a&gt;, 
&lt;a 
href="https://github.com/apache/datafusion/pull/19064"&gt;#19064&lt;/a&gt;).
 This allows table provider implementations to take better advantage of 
existing sort 
-information such as to reorder files or row groups to satisfy 
&lt;code&gt;LIMIT&lt;/code&gt; clauses more
-efficiently. Thanks to &lt;a 
href="https://github.com/zhuqi-lucas"&gt;zhuqi-lucas&lt;/a&gt; for this 
feature. &lt;/p&gt;
+information based on the query pattern, such as to reorder files or row groups 
to 
+satisfy &lt;code&gt;LIMIT&lt;/code&gt; clauses more
+efficiently. Thanks to &lt;a 
href="https://github.com/zhuqi-lucas"&gt;zhuqi-lucas&lt;/a&gt; and &lt;a 
href="https://github.com/xudong963"&gt;xudong963&lt;/a&gt; for this feature. 
&lt;/p&gt;
 &lt;h3 
id="tableprovider-supports-delete-and-update-statements"&gt;&lt;code&gt;TableProvider&lt;/code&gt;
 supports &lt;code&gt;DELETE&lt;/code&gt; and &lt;code&gt;UPDATE&lt;/code&gt; 
statements&lt;a class="headerlink" 
href="#tableprovider-supports-delete-and-update-statements" title="Permanent 
link"&gt;¶&lt;/a&gt;&lt;/h3&gt;
 &lt;p&gt;The &lt;a 
href="https://docs.rs/datafusion/52.0.0/datafusion/datasource/trait.TableProvider.html"&gt;TableProvider&lt;/a&gt;
 trait now includes hooks for &lt;code&gt;DELETE&lt;/code&gt; and 
&lt;code&gt;UPDATE&lt;/code&gt;
 statements and the basic MemTable implements them (&lt;a 
href="https://github.com/apache/datafusion/pull/19142"&gt;#19142&lt;/a&gt;). 
This lets


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]


Reply via email to