| 16 | } |
| 17 | |
| 18 | ArrowNullMaskTree ArrowNullMaskTree::offsetBy(int64_t offset) { |
| 19 | // this operation is mostly a special case for dictionary/run-end encoding |
| 20 | ArrowNullMaskTree ret(*this); |
| 21 | ret.offset += offset; |
| 22 | return ret; |
| 23 | } |
| 24 | |
| 25 | bool ArrowNullMaskTree::copyFromBuffer(const void* buffer, uint64_t srcOffset, uint64_t count) { |
| 26 | if (buffer == nullptr) { |
no outgoing calls
no test coverage detected