v.23.2New Feature

Allow Three-Argument Version for Table Function Format

Allow a three-argument version for table function format. close #45808. #45873 (FFFFFFFHHHHHHH).
ClickHouse now supports a three-argument version of the format table function.

Why it matters

This feature enhances the format table function by allowing users to pass an additional argument, thus increasing its flexibility and enabling more precise control over data formatting operations.

How to use it

Use the format table function with three arguments instead of the previous two. For example:

sql<br>SELECT * FROM format('format_name', 'data', 'additional_parameter')<br>
This additional argument can be used to specify extra formatting options as needed.