v.22.2Performance Improvement
Support optimize_read_in_order for partially sorted keys
Supportoptimize_read_in_orderif prefix of sorting key is already sorted. E.g. if we have sorting keyORDER BY (a, b)in table and query withWHERE a = const ORDER BY bclauses, now it will be applied reading in order of sorting key instead of full sort. #32748 (Anton Popov).