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

Function floatvector_lt

vexdb_pg/src/floatvector.cpp:691–696  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

689
690PG_FUNCTION_INFO_V1(floatvector_lt);
691Datum floatvector_lt(PG_FUNCTION_ARGS)
692{
693 FloatVector *a = (FloatVector *)PG_GETARG_FLOATVECTOR_P(0);
694 FloatVector *b = (FloatVector *)PG_GETARG_FLOATVECTOR_P(1);
695 PG_RETURN_BOOL(floatvector_cmp_internal(a, b) < 0);
696}
697
698PG_FUNCTION_INFO_V1(floatvector_le);
699Datum floatvector_le(PG_FUNCTION_ARGS)

Callers

nothing calls this directly

Calls 1

floatvector_cmp_internalFunction · 0.85

Tested by

no test coverage detected