| 651 | Status ReserveData(int64_t length); |
| 652 | |
| 653 | Status AppendNulls(int64_t length) final { |
| 654 | ARROW_RETURN_NOT_OK(Reserve(length)); |
| 655 | data_builder_.UnsafeAppend(length, BinaryViewType::c_type{}); |
| 656 | UnsafeSetNull(length); |
| 657 | return Status::OK(); |
| 658 | } |
| 659 | |
| 660 | /// \brief Append a single null element |
| 661 | Status AppendNull() final { |
nothing calls this directly
no test coverage detected