| 131 | } |
| 132 | |
| 133 | Status FixedSizeBinaryBuilder::AppendNull() { |
| 134 | RETURN_NOT_OK(Reserve(1)); |
| 135 | UnsafeAppendNull(); |
| 136 | return Status::OK(); |
| 137 | } |
| 138 | |
| 139 | Status FixedSizeBinaryBuilder::AppendNulls(int64_t length) { |
| 140 | RETURN_NOT_OK(Reserve(length)); |
nothing calls this directly
no test coverage detected