| 333 | } |
| 334 | |
| 335 | Datum |
| 336 | enum_ge(PG_FUNCTION_ARGS) |
| 337 | { |
| 338 | Oid a = PG_GETARG_OID(0); |
| 339 | Oid b = PG_GETARG_OID(1); |
| 340 | |
| 341 | PG_RETURN_BOOL(enum_cmp_internal(a, b, fcinfo) >= 0); |
| 342 | } |
| 343 | |
| 344 | Datum |
| 345 | enum_gt(PG_FUNCTION_ARGS) |
nothing calls this directly
no test coverage detected