v.23.12New Feature

Add FORMAT_BYTES alias for formatReadableSize

Add FORMAT_BYTES as an alias for formatReadableSize. #57592 (Bharat Nallan).
Introduces FORMAT_BYTES as a new alias for the existing formatReadableSize function in ClickHouse.

Why it matters

This feature provides a more intuitive and concise function name for formatting byte sizes into human-readable strings, enhancing code readability and easing usage for users dealing with byte size formatting.

How to use it

Use the FORMAT_BYTES function in your SQL queries in place of formatReadableSize. For example:

SELECT FORMAT_BYTES(123456789) AS readable_size