v.25.12Performance Improvement
Better application of skip indexes
ClickHouse now uses skip indexes to perform index analysis on WHERE clauses with mixedAND- andOR-connected filter conditions. Previously, the WHERE clause needed to be a conjunction (AND) of filter conditions to utilize skip indexes. A new settinguse_skip_indexes_for_disjunctions(default: on) controls this feature. (issue #75228). #87781 (Shankar Iyer).