v.25.9Improvement
Allow using native numbers in WHERE
Allow using native numbers in WHERE. They are already allowed to be arguments of logical functions. This simplifies filter-push-down and move-to-prewhere optimizations. #86390 (Nikolai Kochetov).Why it matters
This feature simplifies query optimization by allowing native numbers to be directly used inWHERE conditions, improving filter push-down and move-to-prewhere optimizations for better query performance.How to use it
Simply include native number literals as conditions in theWHERE clause of your queries. For example:SELECT * FROM table WHERE 1No additional configuration is required.