* BsonEqualOperatorId returns the OID of the = operator. */
| 2350 | * BsonEqualOperatorId returns the OID of the <bson> = <bson> operator. |
| 2351 | */ |
| 2352 | Oid |
| 2353 | BsonEqualOperatorId(void) |
| 2354 | { |
| 2355 | return GetCoreBinaryOperatorId(&Cache.BsonEqualOperatorId, |
| 2356 | BsonTypeId(), "=", BsonTypeId()); |
| 2357 | } |
| 2358 | |
| 2359 | |
| 2360 | /* |
no test coverage detected