v.20.6New Feature
Support ORC format for output in ClickHouse
Support format ORC for output (was supported only for input). #11662 (Kruglov Pavel).Why it matters
This feature enables users to export query results directly in the ORC format, a popular columnar storage format widely used for efficient data storage and interchange. It simplifies data workflows by allowing seamless integration with systems that consume ORC files, improving interoperability and usability.How to use it
To use the ORC output format, specifyFORMAT ORC at the end of your query. For example:SELECT * FROM table_name FORMAT ORC