<?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 Error DELTA_CATALOG_MANAGED_TABLE_UPGRADE_WITH_OTHER_PROPERTIES during catalog commit upgrade in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/error-delta-catalog-managed-table-upgrade-with-other-properties/m-p/165448#M55442</link>
    <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I'm encountering an issue with the Catalog Commit functionality while attempting to upgrade a table, following the official Databricks documentation&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.databricks.com/aws/en/tables/features/catalog-commits" target="_blank" rel="noopener"&gt;Catalog commits | Databricks on AWS&lt;/A&gt;&lt;/P&gt;&lt;P&gt;When running the following command on a Managed Iceberg Table (contains VARIANT Type data):&lt;/P&gt;&lt;P data-unlink="true"&gt;ALTER TABLE xxx&lt;BR /&gt;SET TBLPROPERTIES ('delta.feature.catalogManaged' = 'supported');&lt;/P&gt;&lt;P data-unlink="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;I get this error:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;[DELTA_CATALOG_MANAGED_TABLE_UPGRADE_WITH_OTHER_PROPERTIES] Cannot combine upgrading table xxx to catalog-managed with other property changes. Properties provided: [delta.enableVariantShredding -&amp;gt; true, delta.feature.catalogmanaged -&amp;gt; supported]. SQLSTATE: 429BQ&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;P&gt;Even if I set delta.enableVariantShredding = true in a separate command prior to running the upgrade, I still hit the exact same error.&lt;/P&gt;&lt;P&gt;Has anyone run into this issue before, and how did you resolve it?&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Wed, 12 Aug 2026 08:51:58 GMT</pubDate>
    <dc:creator>xwu</dc:creator>
    <dc:date>2026-08-12T08:51:58Z</dc:date>
    <item>
      <title>Error DELTA_CATALOG_MANAGED_TABLE_UPGRADE_WITH_OTHER_PROPERTIES during catalog commit upgrade</title>
      <link>https://community.databricks.com/t5/data-engineering/error-delta-catalog-managed-table-upgrade-with-other-properties/m-p/165448#M55442</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I'm encountering an issue with the Catalog Commit functionality while attempting to upgrade a table, following the official Databricks documentation&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.databricks.com/aws/en/tables/features/catalog-commits" target="_blank" rel="noopener"&gt;Catalog commits | Databricks on AWS&lt;/A&gt;&lt;/P&gt;&lt;P&gt;When running the following command on a Managed Iceberg Table (contains VARIANT Type data):&lt;/P&gt;&lt;P data-unlink="true"&gt;ALTER TABLE xxx&lt;BR /&gt;SET TBLPROPERTIES ('delta.feature.catalogManaged' = 'supported');&lt;/P&gt;&lt;P data-unlink="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;I get this error:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;[DELTA_CATALOG_MANAGED_TABLE_UPGRADE_WITH_OTHER_PROPERTIES] Cannot combine upgrading table xxx to catalog-managed with other property changes. Properties provided: [delta.enableVariantShredding -&amp;gt; true, delta.feature.catalogmanaged -&amp;gt; supported]. SQLSTATE: 429BQ&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;P&gt;Even if I set delta.enableVariantShredding = true in a separate command prior to running the upgrade, I still hit the exact same error.&lt;/P&gt;&lt;P&gt;Has anyone run into this issue before, and how did you resolve it?&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 12 Aug 2026 08:51:58 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/error-delta-catalog-managed-table-upgrade-with-other-properties/m-p/165448#M55442</guid>
      <dc:creator>xwu</dc:creator>
      <dc:date>2026-08-12T08:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: Error DELTA_CATALOG_MANAGED_TABLE_UPGRADE_WITH_OTHER_PROPERTIES during catalog commit upgrade</title>
      <link>https://community.databricks.com/t5/data-engineering/error-delta-catalog-managed-table-upgrade-with-other-properties/m-p/165641#M55469</link>
      <description>&lt;P&gt;Hi&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.databricks.com/t5/user/viewprofilepage/user-id/186843" target="_blank"&gt;@xwu&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Good detective work getting this far. Your SQL is valid, and the error message actually tells the story once you unpack it.&lt;/P&gt;
&lt;P&gt;Enabling&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;delta.feature.catalogManaged&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;on an existing table is a protocol upgrade, and it has to be a standalone, metadata-only commit. The engine refuses to combine it with any other property change, which is exactly what&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;DELTA_CATALOG_MANAGED_TABLE_UPGRADE_WITH_OTHER_PROPERTIES&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;is telling you. The clue is that&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;delta.enableVariantShredding = true&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;shows up in the error even though you never asked for it in that command. On DBR 17.3 and above, variant shredding is automatically enabled when a table is created with VARIANT columns, so the property is already sitting in your table metadata. The upgrade path appears to carry it into the same commit, which is why setting it in a separate command beforehand doesn't clear the error: that only records the property on the table, it doesn't get it out of the upgrade's way.&lt;/P&gt;
&lt;P&gt;Here's what I would try, in order, on a test clone or non-production copy first:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Verify the table state and grab diagnostics:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;DESCRIBE DETAIL xxx;&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;(take a gander at the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;tableFeatures&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;column),&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;SHOW TBLPROPERTIES xxx;&lt;/CODE&gt;, and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;DESCRIBE HISTORY xxx;&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;Opt the table out of shredding. Since this is a Managed Delta table, note the property prefix:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;ALTER TABLE xxx SET TBLPROPERTIES ('delta.enableVariantShredding' = 'false');&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;Run the upgrade by itself:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;ALTER TABLE xxx SET TBLPROPERTIES ('delta.feature.catalogManaged' = 'supported');&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;If the opt-out alone doesn't clear it, remove the shredding feature entirely before upgrading:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;ALTER TABLE xxx DROP FEATURE "variantShredding";&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Check&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;tableFeatures&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;first for the exact name, since tables enabled during the preview may show&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;variantShredding-preview&lt;/CODE&gt;. Keep in mind this rewrites shredded VARIANT data in place back to the unshredded format, so it isn't free on a large table.&lt;/LI&gt;
&lt;LI&gt;Once the catalog upgrade succeeds, re-enable shredding. It only applies to future writes, so run&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;REORG TABLE xxx APPLY (SHRED VARIANT)&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;if you want existing data rewritten too.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Two housekeeping items. Enabling catalog commits on an existing table requires DBR 18.0 or above (16.4 only covers reading, writing, and creating). And do not cancel the upgrade while it's running, since interrupting it can leave the table in a partially upgraded state that locks reads and writes. Rerun the command instead of canceling.&lt;/P&gt;
&lt;P&gt;If this sequence still produces the same error on a supported runtime, the public docs don't establish a confirmed workaround, and I would treat it as a product compatibility gap between variant shredding and the catalog commit upgrade on Managed Iceberg. Open a support ticket and include the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;DESCRIBE DETAIL&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;output, table properties, history, runtime version, and a reproducible test case.&lt;/P&gt;
&lt;P&gt;The short version: get the shredding property fully out of the picture, run the upgrade as its own clean commit, then bring shredding back.&lt;/P&gt;
&lt;P&gt;References:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Catalog commits:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://docs.databricks.com/aws/en/tables/features/catalog-commits" rel="nofollow noopener noreferrer" target="_blank"&gt;https://docs.databricks.com/aws/en/tables/features/catalog-commits&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Variant shredding:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://docs.databricks.com/aws/en/tables/features/variant-shredding" rel="nofollow noopener noreferrer" target="_blank"&gt;https://docs.databricks.com/aws/en/tables/features/variant-shredding&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Dropping Delta table features:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://docs.databricks.com/aws/en/delta/drop-feature" rel="nofollow noopener noreferrer" target="_blank"&gt;https://docs.databricks.com/aws/en/delta/drop-feature&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Regards, Louis&lt;/P&gt;</description>
      <pubDate>Thu, 13 Aug 2026 18:44:29 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/error-delta-catalog-managed-table-upgrade-with-other-properties/m-p/165641#M55469</guid>
      <dc:creator>Louis_Frolio</dc:creator>
      <dc:date>2026-08-13T18:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Error DELTA_CATALOG_MANAGED_TABLE_UPGRADE_WITH_OTHER_PROPERTIES during catalog commit upgrade</title>
      <link>https://community.databricks.com/t5/data-engineering/error-delta-catalog-managed-table-upgrade-with-other-properties/m-p/165643#M55470</link>
      <description>&lt;P&gt;This looks like an interaction between the &lt;STRONG&gt;catalog-managed protocol upgrade&lt;/STRONG&gt; and &lt;STRONG&gt;VARIANT shredding&lt;/STRONG&gt;, rather than an issue with the SQL syntax itself.&lt;/P&gt;&lt;P&gt;delta.feature.catalogManaged needs to be enabled as a standalone table/protocol upgrade. In this case, Databricks also appears to be carrying delta.enableVariantShredding=true into the same metadata change because the table contains VARIANT, which causes:&lt;/P&gt;&lt;P&gt;DELTA_CATALOG_MANAGED_TABLE_UPGRADE_WITH_OTHER_PROPERTIES&lt;/P&gt;&lt;P&gt;I would first check the current state:&lt;/P&gt;&lt;PRE&gt;DESCRIBE DETAIL catalog.schema.table;
SHOW TBLPROPERTIES catalog.schema.table;
DESCRIBE HISTORY catalog.schema.table;&lt;/PRE&gt;&lt;P&gt;Then, on a test/non-production table, try temporarily disabling variant shredding:&lt;/P&gt;&lt;PRE&gt;ALTER TABLE catalog.schema.table
SET TBLPROPERTIES ('delta.enableVariantShredding' = 'false');&lt;/PRE&gt;&lt;P&gt;Then run the catalog-managed upgrade separately:&lt;/P&gt;&lt;PRE&gt;ALTER TABLE catalog.schema.table
SET TBLPROPERTIES ('delta.feature.catalogManaged' = 'supported');&lt;/PRE&gt;&lt;P&gt;If the error still references enableVariantShredding, it may be necessary to remove the shredding table feature before the upgrade:&lt;/P&gt;&lt;PRE&gt;ALTER TABLE catalog.schema.table
DROP FEATURE "variantShredding";&lt;/PRE&gt;&lt;P&gt;Verify the exact feature name in DESCRIBE DETAIL first, since older/preview tables may expose a slightly different feature name.&lt;/P&gt;&lt;P&gt;After the catalog-managed upgrade succeeds, variant shredding can be enabled again:&lt;/P&gt;&lt;PRE&gt;ALTER TABLE catalog.schema.table
SET TBLPROPERTIES ('delta.enableVariantShredding' = 'true');&lt;/PRE&gt;&lt;P&gt;One other important check: upgrading an &lt;STRONG&gt;existing&lt;/STRONG&gt; table to catalog-managed requires &lt;STRONG&gt;DBR 18.0+&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;So I suspect this is currently an edge case in the upgrade path for tables combining &lt;STRONG&gt;Catalog Commits + VARIANT/Variant Shredding&lt;/STRONG&gt;, rather than a problem with the documented ALTER TABLE statement itself.&lt;/P&gt;&lt;P&gt;If the same issue persists after removing shredding on DBR 18.0+, I would raise it with Databricks Support with the DESCRIBE DETAIL, table properties, runtime version, and table history.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Aug 2026 19:39:11 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/error-delta-catalog-managed-table-upgrade-with-other-properties/m-p/165643#M55470</guid>
      <dc:creator>amitsharma1707</dc:creator>
      <dc:date>2026-08-13T19:39:11Z</dc:date>
    </item>
  </channel>
</rss>

