v.24.4Improvement
Implement input support for clickhouse-local
Implement support forinputforclickhouse-local. #61923 (Azat Khuzhin).
Why it matters
This feature allowsclickhouse-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 theinput 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.