\brief Append a single null element
| 659 | |
| 660 | /// \brief Append a single null element |
| 661 | Status AppendNull() final { |
| 662 | ARROW_RETURN_NOT_OK(Reserve(1)); |
| 663 | data_builder_.UnsafeAppend(BinaryViewType::c_type{}); |
| 664 | UnsafeAppendToBitmap(false); |
| 665 | return Status::OK(); |
| 666 | } |
| 667 | |
| 668 | /// \brief Append a empty element (length-0 inline string) |
| 669 | Status AppendEmptyValue() final { |
nothing calls this directly
no test coverage detected