MCPcopy Create free account
hub / github.com/apache/cloudberry / enum_lt

Function enum_lt

src/backend/utils/adt/enum.c:299–306  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

297}
298
299Datum
300enum_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
308Datum
309enum_le(PG_FUNCTION_ARGS)

Callers

nothing calls this directly

Calls 1

enum_cmp_internalFunction · 0.85

Tested by

no test coverage detected