| 46 | } |
| 47 | |
| 48 | LargeBinaryArray::LargeBinaryArray(const std::shared_ptr<ArrayData>& data) { |
| 49 | ARROW_CHECK(is_large_binary_like(data->type->id())); |
| 50 | SetData(data); |
| 51 | } |
| 52 | |
| 53 | LargeBinaryArray::LargeBinaryArray(int64_t length, |
| 54 | const std::shared_ptr<Buffer>& value_offsets, |
nothing calls this directly
no test coverage detected