MCPcopy Create free account
hub / github.com/apache/madlib / float8arr_equals

Function float8arr_equals

methods/svec/src/pg_gp/operators.c:753–758  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

751Datum float8arr_equals(PG_FUNCTION_ARGS);
752PG_FUNCTION_INFO_V1( float8arr_equals);
753Datum float8arr_equals(PG_FUNCTION_ARGS) {
754 ArrayType *left = PG_GETARG_ARRAYTYPE_P(0);
755 ArrayType *right = PG_GETARG_ARRAYTYPE_P(1);
756
757 PG_RETURN_BOOL(float8arr_equals_internal(left,right));
758}
759
760/*
761 * Returns a SparseData formed from a dense float8[] in uncompressed format.

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected