v.25.6Improvement
PR addresses issues with the implementation
This PR addresses issues with the implementation ofis_strictin the monotonicity checks for conversion functions. Currently, some conversion functions, such astoFloat64(UInt32)andtoDate(UInt8), incorrectly returnis_strictas false when they should return true. #81359 (zoomxi).
Why it matters
The feature corrects the evaluation ofis_strict in monotonicity checks for certain conversion functions like toFloat64(UInt32) and toDate(UInt8). Previously, these functions incorrectly returned is_strict as false, which could affect query optimizations relying on monotonicity assumptions. Ensuring accurate strict monotonicity detection improves query planner decisions and performance.