| 306 | } |
| 307 | |
| 308 | Datum |
| 309 | enum_le(PG_FUNCTION_ARGS) |
| 310 | { |
| 311 | Oid a = PG_GETARG_OID(0); |
| 312 | Oid b = PG_GETARG_OID(1); |
| 313 | |
| 314 | PG_RETURN_BOOL(enum_cmp_internal(a, b, fcinfo) <= 0); |
| 315 | } |
| 316 | |
| 317 | Datum |
| 318 | enum_eq(PG_FUNCTION_ARGS) |
nothing calls this directly
no test coverage detected