| 116 | } |
| 117 | |
| 118 | Status FixedSizeBinaryBuilder::AppendValues(const uint8_t* data, int64_t length, |
| 119 | const uint8_t* valid_bytes) { |
| 120 | RETURN_NOT_OK(Reserve(length)); |
| 121 | UnsafeAppendToBitmap(valid_bytes, length); |
| 122 | return byte_builder_.Append(data, length * byte_width_); |
| 123 | } |
| 124 | |
| 125 | Status FixedSizeBinaryBuilder::AppendValues(const uint8_t* data, int64_t length, |
| 126 | const uint8_t* validity, |
nothing calls this directly
no test coverage detected