| 909 | : right_(right), options_(opts), result_(false) {} |
| 910 | |
| 911 | Status Visit(const NullScalar& left) { |
| 912 | result_ = true; |
| 913 | return Status::OK(); |
| 914 | } |
| 915 | |
| 916 | Status Visit(const BooleanScalar& left) { |
| 917 | const auto& right = checked_cast<const BooleanScalar&>(right_); |
nothing calls this directly
no test coverage detected