| 751 | Datum float8arr_equals(PG_FUNCTION_ARGS); |
| 752 | PG_FUNCTION_INFO_V1( float8arr_equals); |
| 753 | Datum 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. |
nothing calls this directly
no test coverage detected