| 360 | } |
| 361 | |
| 362 | Datum |
| 363 | enum_larger(PG_FUNCTION_ARGS) |
| 364 | { |
| 365 | Oid a = PG_GETARG_OID(0); |
| 366 | Oid b = PG_GETARG_OID(1); |
| 367 | |
| 368 | PG_RETURN_OID(enum_cmp_internal(a, b, fcinfo) > 0 ? a : b); |
| 369 | } |
| 370 | |
| 371 | Datum |
| 372 | enum_cmp(PG_FUNCTION_ARGS) |
nothing calls this directly
no test coverage detected