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

Function floatvector_fastcmp

vexdb_pg/src/floatvector.cpp:752–757  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

750}
751
752static int floatvector_fastcmp(Datum x, Datum y, SortSupport)
753{
754 FloatVector *a = (FloatVector *)DatumGetFloatVector(x);
755 FloatVector *b = (FloatVector *)DatumGetFloatVector(y);
756 return floatvector_cmp_internal(a, b);
757}
758
759PG_FUNCTION_INFO_V1(floatvector_sortsupport);
760Datum floatvector_sortsupport(PG_FUNCTION_ARGS)

Callers

nothing calls this directly

Calls 1

floatvector_cmp_internalFunction · 0.85

Tested by

no test coverage detected