| 1599 | |
| 1600 | protected: |
| 1601 | Status Allocate() override { |
| 1602 | RETURN_NOT_OK(this->AllocateNDArray(NPY_DATETIME)); |
| 1603 | SetDatetimeUnit(internal::NumPyFrequency(UNIT)); |
| 1604 | return Status::OK(); |
| 1605 | } |
| 1606 | }; |
| 1607 | |
| 1608 | using DatetimeSecondWriter = DatetimeWriter<TimeUnit::SECOND>; |
nothing calls this directly
no test coverage detected