* bson_dollar_in implements the $in functionality * in the runtime. This traverses the document based on * filter dot-notation syntax and for all possible values, checks * that at least one matches at least one of the input array values. */
| 1523 | * that at least one matches at least one of the input array values. |
| 1524 | */ |
| 1525 | Datum |
| 1526 | bson_dollar_in(PG_FUNCTION_ARGS) |
| 1527 | { |
| 1528 | bool hasObjectIdArg = false; |
| 1529 | return BsonDollarInCore(fcinfo, hasObjectIdArg); |
| 1530 | } |
| 1531 | |
| 1532 | |
| 1533 | /* |
nothing calls this directly
no test coverage detected