v.19.3New Features
Added Ability to Send Queries INSERT INTO Tbl VALUES
Added ability to send queriesINSERT INTO tbl VALUES (....to server without splitting onqueryanddataparts. #4301 (alesapin)
Why it matters
This feature simplifies client-server interaction by allowing single-statementINSERT INTO queries with inline values. It removes the need to separate the query structure from the actual data, making data insertion more straightforward and compatible with typical SQL usage patterns.How to use it
Users can send completeINSERT INTO tbl VALUES (...) queries directly to the ClickHouse server without any special handling or splitting. Just execute the query as a single statement in the usual way.