Chris_N
New Contributor II

There was no changes to the clustering configuration of the DLT table (Materialized view).

I am checking if the clustering fields are properly configured using the SQL command `DESCRIBE EXTENDED <table>`. While running this on a normal table with clustering configured, I can see `clusteringColumns` property under the TableProperties section.

The same does not exist for the DLT tables created. This issue exists for all my DLT tables across different pipelines.

For recreating the issue, please create a DLT table using the below syntax and check if the clusteringColumns property is properly set on the table

@Dlt.table( name="flows", cluster_by=["from"] ) def flows(): <LOGIC>