@Shubhadip Ghoshโ : Hope this helps.
In Delta Lake, when you perform Z-Ordering on a particular column, it reorganizes the data within the files based on the values of that column. However, Z-Ordering itself does not directly affect the statistics collection process for other columns in the table.
By default, Delta Lake automatically collects statistics for the first 32 columns of a table to improve query performance. These statistics are stored in the Delta transaction log.
When you run Z-Ordering on a specific column, it reorganizes the data within the files according to that column's values, but it doesn't trigger automatic statistics collection for the other columns. The statistics collection remains unaffected by the Z-Ordering operation.