v.25.10Performance Improvement
SELECT query with FINAL clause on.a ReplacingMergeTree
SELECT query withFINALclause on.aReplacingMergeTreetable with theis_deletedcolumn now executes faster because of improved parallelization from two existing optimizations: 1.do_not_merge_across_partitions_select_finaloptimization for partitions of the table that have only a singlepart; 2. Split other selected ranges of the table intointersecting / non-intersectingand only intersecting ranges have to pass through FINAL merging transform. #88090 (Shankar Iyer).