v.22.4New Feature
Introduce ProtobufList Format in ClickHouse
Introduce format ProtobufList (all records as repeated messages in out Protobuf). Closes #16436. #35152 (Nikolai Kochetov).Why it matters
TheProtobufList format addresses the need for compact and efficient serialization of multiple records into a single Protobuf message, simplifying data exchange and integration with systems that consume Protobuf-encoded data.How to use it
To use theProtobufList format, specify it in the FORMAT clause of your query. For example:SELECT * FROM table_name FORMAT ProtobufList