* Returns true if the index plugin vector for the key document is of the given type. */
| 2300 | * Returns true if the index plugin vector for the key document is of the given type. |
| 2301 | */ |
| 2302 | inline static bool |
| 2303 | IsIndexOfType(const bson_value_t *value, const char *indexType) |
| 2304 | { |
| 2305 | return value->value_type == BSON_TYPE_UTF8 && |
| 2306 | strcmp(value->value.v_utf8.str, indexType) == 0; |
| 2307 | } |
| 2308 | |
| 2309 | |
| 2310 | /* |
no outgoing calls
no test coverage detected