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

Function floatvector_ne

vexdb_pg/src/floatvector.cpp:718–726  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

716
717PG_FUNCTION_INFO_V1(floatvector_ne);
718Datum floatvector_ne(PG_FUNCTION_ARGS)
719{
720 FloatVector *a = (FloatVector *)PG_GETARG_FLOATVECTOR_P(0);
721 FloatVector *b = (FloatVector *)PG_GETARG_FLOATVECTOR_P(1);
722 bool res = floatvector_cmp_internal(a, b) != 0;
723 PG_FREE_IF_COPY(a, 0);
724 PG_FREE_IF_COPY(b, 1);
725 PG_RETURN_BOOL(res);
726}
727
728PG_FUNCTION_INFO_V1(floatvector_ge);
729Datum floatvector_ge(PG_FUNCTION_ARGS)

Callers

nothing calls this directly

Calls 1

floatvector_cmp_internalFunction · 0.85

Tested by

no test coverage detected