MCPcopy Create free account
hub / github.com/VexDB-THU/VexDB-Lite / floatvector_ge

Function floatvector_ge

vexdb_pg/src/floatvector.cpp:729–734  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

727
728PG_FUNCTION_INFO_V1(floatvector_ge);
729Datum floatvector_ge(PG_FUNCTION_ARGS)
730{
731 FloatVector *a = (FloatVector *)PG_GETARG_FLOATVECTOR_P(0);
732 FloatVector *b = (FloatVector *)PG_GETARG_FLOATVECTOR_P(1);
733 PG_RETURN_BOOL(floatvector_cmp_internal(a, b) >= 0);
734}
735
736PG_FUNCTION_INFO_V1(floatvector_gt);
737Datum floatvector_gt(PG_FUNCTION_ARGS)

Callers

nothing calls this directly

Calls 1

floatvector_cmp_internalFunction · 0.85

Tested by

no test coverage detected