| 191 | struct ExtValueOperatorEq { |
| 192 | static const char* name; |
| 193 | static Reference<IPredicate> toPredicate(std::string const& unencoded_path, bson::BSONElement const& element) { |
| 194 | return eq_predicate(element, unencoded_path); |
| 195 | } |
| 196 | }; |
| 197 | REGISTER_VALUE_OPERATOR(ExtValueOperatorEq, "$eq"); |
| 198 |
nothing calls this directly
no test coverage detected