v.25.12Performance Improvement

Better application of skip indexes

ClickHouse now uses skip indexes to perform index analysis on WHERE clauses with mixed AND- and OR-connected filter conditions. Previously, the WHERE clause needed to be a conjunction (AND) of filter conditions to utilize skip indexes. A new setting use_skip_indexes_for_disjunctions (default: on) controls this feature. (issue #75228). #87781 (Shankar Iyer).