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

Function enum_ge

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

Source from the content-addressed store, hash-verified

333}
334
335Datum
336enum_ge(PG_FUNCTION_ARGS)
337{
338 Oid a = PG_GETARG_OID(0);
339 Oid b = PG_GETARG_OID(1);
340
341 PG_RETURN_BOOL(enum_cmp_internal(a, b, fcinfo) >= 0);
342}
343
344Datum
345enum_gt(PG_FUNCTION_ARGS)

Callers

nothing calls this directly

Calls 1

enum_cmp_internalFunction · 0.85

Tested by

no test coverage detected