| 252 | } |
| 253 | |
| 254 | Status Visit(const NullScalar& s) { |
| 255 | if (s.is_valid) { |
| 256 | return Status::Invalid("null scalar should have is_valid = false"); |
| 257 | } |
| 258 | return Status::OK(); |
| 259 | } |
| 260 | |
| 261 | template <typename T> |
| 262 | Status Visit(const internal::PrimitiveScalar<T>& s) { |
nothing calls this directly
no test coverage detected