| 705 | |
| 706 | PG_FUNCTION_INFO_V1(floatvector_eq); |
| 707 | Datum floatvector_eq(PG_FUNCTION_ARGS) |
| 708 | { |
| 709 | FloatVector *a = (FloatVector *)PG_GETARG_FLOATVECTOR_P(0); |
| 710 | FloatVector *b = (FloatVector *)PG_GETARG_FLOATVECTOR_P(1); |
| 711 | bool res = floatvector_cmp_internal(a, b) == 0; |
| 712 | PG_FREE_IF_COPY(a, 0); |
| 713 | PG_FREE_IF_COPY(b, 1); |
| 714 | PG_RETURN_BOOL(res); |
| 715 | } |
| 716 | |
| 717 | PG_FUNCTION_INFO_V1(floatvector_ne); |
| 718 | Datum floatvector_ne(PG_FUNCTION_ARGS) |
nothing calls this directly
no test coverage detected