| 351 | } |
| 352 | |
| 353 | Datum |
| 354 | enum_smaller(PG_FUNCTION_ARGS) |
| 355 | { |
| 356 | Oid a = PG_GETARG_OID(0); |
| 357 | Oid b = PG_GETARG_OID(1); |
| 358 | |
| 359 | PG_RETURN_OID(enum_cmp_internal(a, b, fcinfo) < 0 ? a : b); |
| 360 | } |
| 361 | |
| 362 | Datum |
| 363 | enum_larger(PG_FUNCTION_ARGS) |
nothing calls this directly
no test coverage detected