v.24.5New Feature
Adds Form Format for Single Record in application/x-www-form-urlencoded
Adds theFormformat to read/write a single record in theapplication/x-www-form-urlencodedformat. #60199 (Shaun Struwig).
Why it matters
This feature enables ClickHouse to import and export data in the commonapplication/x-www-form-urlencoded format, which is widely used in web forms and HTTP requests. It simplifies integration with web applications and services that send or receive data in this format.How to use it
Use theForm format in your INSERT or SELECT queries to read from or write to data streams encoded with application/x-www-form-urlencoded. For example, specify FORMAT Form in your query to enable this functionality.