| 82 | } // namespace |
| 83 | |
| 84 | void VectorSerializer::append(const RowVectorPtr& vector) { |
| 85 | const IndexRange allRows{0, vector->size()}; |
| 86 | Scratch scratch; |
| 87 | append(vector, folly::Range(&allRows, 1), scratch); |
| 88 | } |
| 89 | |
| 90 | void BatchVectorSerializer::serialize( |
| 91 | const RowVectorPtr& vector, |