| 1435 | using T = typename ArrowType::c_type; |
| 1436 | |
| 1437 | bool CanZeroCopy(const ChunkedArray& data) const override { |
| 1438 | return IsNonNullContiguous(data) && data.type()->id() == ArrowType::type_id; |
| 1439 | } |
| 1440 | |
| 1441 | Status CopyInto(std::shared_ptr<ChunkedArray> data, int64_t rel_placement) override { |
| 1442 | Type::type in_type = data->type()->id(); |
nothing calls this directly
no test coverage detected