| 33 | using internal::checked_cast; |
| 34 | |
| 35 | BinaryArray::BinaryArray(const std::shared_ptr<ArrayData>& data) { |
| 36 | ARROW_CHECK(is_binary_like(data->type->id())); |
| 37 | SetData(data); |
| 38 | } |
| 39 | |
| 40 | BinaryArray::BinaryArray(int64_t length, const std::shared_ptr<Buffer>& value_offsets, |
| 41 | const std::shared_ptr<Buffer>& data, |
nothing calls this directly
no test coverage detected