| 277 | |
| 278 | template <typename ScalarType> |
| 279 | Status CheckValueNotNull(const ScalarType& s) { |
| 280 | if (!s.value) { |
| 281 | return Status::Invalid(s.type->ToString(), " value is null"); |
| 282 | } |
| 283 | return Status::OK(); |
| 284 | } |
| 285 | |
| 286 | Status Visit(const FixedSizeBinaryScalar& s) { |
| 287 | const auto& byte_width = |