* BsonOrderByFunctionId returns the OID of the bson_orderby( , ) function. */
| 5164 | * BsonOrderByFunctionId returns the OID of the bson_orderby(<bson>, <bson>) function. |
| 5165 | */ |
| 5166 | Oid |
| 5167 | BsonOrderByFunctionOid(void) |
| 5168 | { |
| 5169 | return GetBinaryOperatorFunctionId(&Cache.BsonOrderByFunctionId, |
| 5170 | "bson_orderby", BsonTypeId(), BsonTypeId()); |
| 5171 | } |
| 5172 | |
| 5173 | |
| 5174 | Oid |
no test coverage detected