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

Function floatvector_cmp

vexdb_pg/src/floatvector.cpp:745–750  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

743
744PG_FUNCTION_INFO_V1(floatvector_cmp);
745Datum floatvector_cmp(PG_FUNCTION_ARGS)
746{
747 FloatVector *a = (FloatVector *)PG_GETARG_FLOATVECTOR_P(0);
748 FloatVector *b = (FloatVector *)PG_GETARG_FLOATVECTOR_P(1);
749 PG_RETURN_INT32(floatvector_cmp_internal(a, b));
750}
751
752static int floatvector_fastcmp(Datum x, Datum y, SortSupport)
753{

Callers

nothing calls this directly

Calls 1

floatvector_cmp_internalFunction · 0.85

Tested by

no test coverage detected