| 57 | Status AppendEmptyValue() final { return AppendEmptyValues(1); } |
| 58 | |
| 59 | Status Append(std::nullptr_t) { return AppendNull(); } |
| 60 | |
| 61 | Status AppendArraySlice(const ArraySpan&, int64_t, int64_t length) override { |
| 62 | return AppendNulls(length); |
nothing calls this directly
no test coverage detected