\brief Append several empty elements
| 675 | |
| 676 | /// \brief Append several empty elements |
| 677 | Status AppendEmptyValues(int64_t length) final { |
| 678 | ARROW_RETURN_NOT_OK(Reserve(length)); |
| 679 | data_builder_.UnsafeAppend(length, BinaryViewType::c_type{}); |
| 680 | UnsafeSetNotNull(length); |
| 681 | return Status::OK(); |
| 682 | } |
| 683 | |
| 684 | void UnsafeAppendNull() { |
| 685 | data_builder_.UnsafeAppend(BinaryViewType::c_type{}); |
nothing calls this directly
no test coverage detected