MCPcopy Create free account
hub / github.com/documentdb/documentdb / bson_dollar_in

Function bson_dollar_in

pg_documentdb/src/query/bson_dollar_operators.c:1525–1530  ·  view source on GitHub ↗

* 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. */

Source from the content-addressed store, hash-verified

1523 * that at least one matches at least one of the input array values.
1524 */
1525Datum
1526bson_dollar_in(PG_FUNCTION_ARGS)
1527{
1528 bool hasObjectIdArg = false;
1529 return BsonDollarInCore(fcinfo, hasObjectIdArg);
1530}
1531
1532
1533/*

Callers

nothing calls this directly

Calls 1

BsonDollarInCoreFunction · 0.85

Tested by

no test coverage detected