| 88 | } |
| 89 | |
| 90 | void BatchVectorSerializer::serialize( |
| 91 | const RowVectorPtr& vector, |
| 92 | OutputStream* stream) { |
| 93 | const IndexRange allRows{0, vector->size()}; |
| 94 | serialize(vector, folly::Range(&allRows, 1), stream); |
| 95 | } |
| 96 | |
| 97 | std::unique_ptr<BatchVectorSerializer> VectorSerde::createBatchSerializer( |
| 98 | memory::MemoryPool* pool, |