| 406 | } |
| 407 | |
| 408 | Status Visit(const NullType& type) { |
| 409 | out_->buffers.resize(1); |
| 410 | |
| 411 | // ARROW-6379: NullType has no buffers in the IPC payload |
| 412 | return GetFieldMetadata(field_index_++, out_); |
| 413 | } |
| 414 | |
| 415 | template <typename T> |
| 416 | enable_if_t<std::is_base_of<FixedWidthType, T>::value && |
nothing calls this directly
no test coverage detected