\brief Append a empty element (length-0 inline string)
| 667 | |
| 668 | /// \brief Append a empty element (length-0 inline string) |
| 669 | Status AppendEmptyValue() final { |
| 670 | ARROW_RETURN_NOT_OK(Reserve(1)); |
| 671 | data_builder_.UnsafeAppend(BinaryViewType::c_type{}); |
| 672 | UnsafeAppendToBitmap(true); |
| 673 | return Status::OK(); |
| 674 | } |
| 675 | |
| 676 | /// \brief Append several empty elements |
| 677 | Status AppendEmptyValues(int64_t length) final { |
nothing calls this directly
no test coverage detected