\brief Append a single null element
| 118 | |
| 119 | /// \brief Append a single null element |
| 120 | Status AppendNull() final { |
| 121 | ARROW_RETURN_NOT_OK(Reserve(1)); |
| 122 | data_builder_.UnsafeAppend(value_type{}); // zero |
| 123 | UnsafeAppendToBitmap(false); |
| 124 | return Status::OK(); |
| 125 | } |
| 126 | |
| 127 | /// \brief Append a empty element |
| 128 | Status AppendEmptyValue() final { |
nothing calls this directly
no test coverage detected