| 144 | |
| 145 | |
| 146 | Datum |
| 147 | extension_bson_gte(PG_FUNCTION_ARGS) |
| 148 | { |
| 149 | pgbson *leftBson = PG_GETARG_PGBSON_PACKED(0); |
| 150 | pgbson *rightBson = PG_GETARG_PGBSON_PACKED(1); |
| 151 | |
| 152 | int compareResult = ComparePgbson(leftBson, rightBson); |
| 153 | |
| 154 | PG_FREE_IF_COPY(leftBson, 0); |
| 155 | PG_FREE_IF_COPY(rightBson, 1); |
| 156 | PG_RETURN_BOOL(compareResult >= 0); |
| 157 | } |
| 158 | |
| 159 | |
| 160 | Datum |
nothing calls this directly
no test coverage detected