| 174 | } |
| 175 | |
| 176 | Block deserializeBlock(ReadBuffer & buf) |
| 177 | { |
| 178 | BlockInputStreamPtr block_in = std::make_shared<NativeBlockInputStream>(buf, ClickHouseRevision::getVersionRevision()); |
| 179 | return block_in->read(); |
| 180 | } |
| 181 | |
| 182 | void serializeHeaderToProto(const Block & block, Protos::Block & proto) |
| 183 | { |
no test coverage detected