| 297 | } |
| 298 | |
| 299 | Datum |
| 300 | enum_lt(PG_FUNCTION_ARGS) |
| 301 | { |
| 302 | Oid a = PG_GETARG_OID(0); |
| 303 | Oid b = PG_GETARG_OID(1); |
| 304 | |
| 305 | PG_RETURN_BOOL(enum_cmp_internal(a, b, fcinfo) < 0); |
| 306 | } |
| 307 | |
| 308 | Datum |
| 309 | enum_le(PG_FUNCTION_ARGS) |
nothing calls this directly
no test coverage detected