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