| 893 | result_(false) {} |
| 894 | |
| 895 | Status Visit(const NullScalar& left) { |
| 896 | result_ = true; |
| 897 | return Status::OK(); |
| 898 | } |
| 899 | |
| 900 | Status Visit(const BooleanScalar& left) { |
| 901 | const auto& right = checked_cast<const BooleanScalar&>(right_); |
nothing calls this directly
no test coverage detected