v.24.4Improvement

Implement input support for clickhouse-local

Implement support for input for clickhouse-local. #61923 (Azat Khuzhin).
Added support for the input clause in clickhouse-local, enabling users to specify input data directly within queries.

Why it matters

This feature allows clickhouse-local to use input data provided via the input clause, which enhances flexibility and simplifies querying local data without the need for external file handling or additional setup.

How to use it

Use the input clause within your clickhouse-local queries to provide inline input data. For example, you can run a query like:

SELECT * FROM table WITH input()

where the input data is specified according to clickhouse-local conventions.