v.21.6Improvement
Make round function behave consistently on non-x86_64 platforms with Banker's rounding
Make round function to behave consistently on non-x86_64 platforms. Rounding half to nearest even (Banker's rounding) is used. #22582 (alexey-milovidov).Why it matters
This feature ensures consistent and predictable rounding results for theround function on non-x86_64 platforms, aligning with the behavior on x86_64 and improving numerical accuracy and portability of queries.How to use it
No explicit action is required. Theround function now automatically applies Banker's rounding uniformly on all supported platforms.