| 1416 | using TypedPandasWriter<NPY_TYPE>::TypedPandasWriter; |
| 1417 | |
| 1418 | bool CanZeroCopy(const ChunkedArray& data) const override { |
| 1419 | return IsNonNullContiguous(data); |
| 1420 | } |
| 1421 | |
| 1422 | Status CopyInto(std::shared_ptr<ChunkedArray> data, int64_t rel_placement) override { |
| 1423 | RETURN_NOT_OK(this->CheckTypeExact(*data->type(), ArrowType::type_id)); |
nothing calls this directly
no test coverage detected