| 73 | } |
| 74 | |
| 75 | KeyColumnArray KeyColumnArray::WithMetadata(const KeyColumnMetadata& metadata) const { |
| 76 | KeyColumnArray copy = *this; |
| 77 | copy.metadata_ = metadata; |
| 78 | return copy; |
| 79 | } |
| 80 | |
| 81 | KeyColumnArray KeyColumnArray::Slice(int64_t offset, int64_t length) const { |
| 82 | KeyColumnArray sliced; |
no outgoing calls