v.20.4Improvement
Remove ORDER BY from Mutations and Ensure Row Order Compliance
Remove ORDER BY stage from mutations because we read from a single ordered part in a single thread. Also add check that the rows in mutation are ordered by sorting key and this order is not violated. #9886 (alesapin)Why it matters
This feature optimizes mutation processing by eliminating the unnecessaryORDER BY stage, as mutations read from a single ordered part in a single thread. It also improves data integrity by adding a check that ensures mutation rows are correctly ordered by the sorting key.