| 586 | : BaseBinaryScalar(Buffer::FromString(std::move(s)), std::move(type)) {} |
| 587 | |
| 588 | void BinaryScalar::FillScratchSpace(uint8_t* scratch_space, |
| 589 | const std::shared_ptr<Buffer>& value) { |
| 590 | FillScalarScratchSpace( |
| 591 | scratch_space, |
| 592 | {int32_t(0), value ? static_cast<int32_t>(value->size()) : int32_t(0)}); |
| 593 | } |
| 594 | |
| 595 | void BinaryViewScalar::FillScratchSpace(uint8_t* scratch_space, |
| 596 | const std::shared_ptr<Buffer>& value) { |
nothing calls this directly
no test coverage detected