| 113 | Status AppendNulls(int64_t length) override { return builder_->AppendNulls(length); } |
| 114 | Status AppendEmptyValue() override { return builder_->AppendEmptyValue(); } |
| 115 | Status AppendEmptyValues(int64_t length) override { |
| 116 | return builder_->AppendEmptyValues(length); |
| 117 | } |
| 118 | |
| 119 | Status AppendScalar(const Scalar& scalar, int64_t n_repeats) override { |
| 120 | return builder_->AppendScalar(scalar, n_repeats); |
nothing calls this directly
no test coverage detected