| 716 | |
| 717 | PG_FUNCTION_INFO_V1(floatvector_ne); |
| 718 | Datum 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 | |
| 728 | PG_FUNCTION_INFO_V1(floatvector_ge); |
| 729 | Datum floatvector_ge(PG_FUNCTION_ARGS) |
nothing calls this directly
no test coverage detected