(self)
| 551 | } |
| 552 | |
| 553 | pub fn build(self) -> BinaryRow { |
| 554 | BinaryRow::from_bytes(self.arity, self.data) |
| 555 | } |
| 556 | |
| 557 | /// Build as Paimon's serialized format: 4-byte BE arity prefix + raw data. |
| 558 | pub fn build_serialized(self) -> Vec<u8> { |
no outgoing calls
no test coverage detected