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

Function floatvector_le

vexdb_pg/src/floatvector.cpp:699–704  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

697
698PG_FUNCTION_INFO_V1(floatvector_le);
699Datum floatvector_le(PG_FUNCTION_ARGS)
700{
701 FloatVector *a = (FloatVector *)PG_GETARG_FLOATVECTOR_P(0);
702 FloatVector *b = (FloatVector *)PG_GETARG_FLOATVECTOR_P(1);
703 PG_RETURN_BOOL(floatvector_cmp_internal(a, b) <= 0);
704}
705
706PG_FUNCTION_INFO_V1(floatvector_eq);
707Datum floatvector_eq(PG_FUNCTION_ARGS)

Callers

nothing calls this directly

Calls 1

floatvector_cmp_internalFunction · 0.85

Tested by

no test coverage detected