| 369 | } |
| 370 | |
| 371 | Datum |
| 372 | enum_cmp(PG_FUNCTION_ARGS) |
| 373 | { |
| 374 | Oid a = PG_GETARG_OID(0); |
| 375 | Oid b = PG_GETARG_OID(1); |
| 376 | |
| 377 | PG_RETURN_INT32(enum_cmp_internal(a, b, fcinfo)); |
| 378 | } |
| 379 | |
| 380 | /* Enum programming support functions */ |
| 381 |
nothing calls this directly
no test coverage detected