Problem
You add or alter comments to your Unity Catalog table from either the Catalog UI or a notebook and you see the command executes successfully. However, when you review the UI, you don’t see the comments in the table.
Cause
The spark.databricks.delta.catalog.update.enabled
configuration is set to false
in the cluster or SQL warehouse settings. When this setting is false, automatic updates to Unity Catalog metadata (such as comments) are disabled, and the UI doesn’t show changes made through any means.
Solution
For All-Purpose Clusters
- Go to the cluster's Spark configuration settings.
- Locate the
spark.databricks.delta.catalog.update.enabled
property. - Change the setting to
true
. - Restart the cluster to apply the changes.
For SQL Warehouses
- Navigate to Workspace Settings > Compute.
- Under SQL Warehouses, select Manage.
- In the Data Access Properties section, find
spark.databricks.delta.catalog.update.enabled
. - Set it to
true
. - Save the changes and restart the SQL Warehouse.
Note
When spark.databricks.delta.catalog.update.enabled
is set to true
, the Delta catalog shows changes to Delta tables, such as schema updates or data modifications, in the Catalog UI without requiring manual action. It doesn’t change anything in the database.