| 55 | Status AppendEmptyValues(int64_t length) final { return AppendNulls(length); } |
| 56 | |
| 57 | Status AppendEmptyValue() final { return AppendEmptyValues(1); } |
| 58 | |
| 59 | Status Append(std::nullptr_t) { return AppendNull(); } |
| 60 |
nothing calls this directly
no test coverage detected