\brief Append a empty element
| 126 | |
| 127 | /// \brief Append a empty element |
| 128 | Status AppendEmptyValue() final { |
| 129 | ARROW_RETURN_NOT_OK(Reserve(1)); |
| 130 | data_builder_.UnsafeAppend(value_type{}); // zero |
| 131 | UnsafeAppendToBitmap(true); |
| 132 | return Status::OK(); |
| 133 | } |
| 134 | |
| 135 | /// \brief Append several empty elements |
| 136 | Status AppendEmptyValues(int64_t length) final { |
nothing calls this directly
no test coverage detected