v.21.9New Feature
Add INSERT ... FROM INFILE feature to match SELECT ... INTO OUTFILE
AddINSERT ... FROM INFILEsimilarly toSELECT ... INTO OUTFILE. #27655 (Filatenkov Artur).
Why it matters
This feature solves the problem of importing data efficiently by enabling direct insertion from files, simplifying data ingestion workflows and enhancing usability by providing a symmetrical counterpart to exporting data withSELECT ... INTO OUTFILE.How to use it
Users can enable this feature by using theINSERT ... FROM INFILE 'filename' statement, specifying the file path to import data directly into a ClickHouse table. The syntax and file formats align with existing data import conventions in ClickHouse.