v.25.9Experimental Feature
Support alter table
Support alter table ... materialize statistics all will materialize all the statistics of a table. #87197 (Han Fei).Why it matters
This feature enables users to efficiently compute and materialize all the table statistics at once, improving query optimization and performance by ensuring all relevant statistics are up-to-date.How to use it
Use theALTER TABLE your_table_name MATERIALIZE STATISTICS ALL command to materialize all statistics for the specified table.