* Returns true if the index plugin vector for the key document is a text index. */
| 2311 | * Returns true if the index plugin vector for the key document is a text index. |
| 2312 | */ |
| 2313 | inline static bool |
| 2314 | IsTextIndex(const bson_value_t *value) |
| 2315 | { |
| 2316 | char *indexTextType = "text"; |
| 2317 | return IsIndexOfType(value, indexTextType); |
| 2318 | } |
| 2319 | |
| 2320 | |
| 2321 | /* |
no test coverage detected