| 727 | |
| 728 | PG_FUNCTION_INFO_V1(floatvector_ge); |
| 729 | Datum floatvector_ge(PG_FUNCTION_ARGS) |
| 730 | { |
| 731 | FloatVector *a = (FloatVector *)PG_GETARG_FLOATVECTOR_P(0); |
| 732 | FloatVector *b = (FloatVector *)PG_GETARG_FLOATVECTOR_P(1); |
| 733 | PG_RETURN_BOOL(floatvector_cmp_internal(a, b) >= 0); |
| 734 | } |
| 735 | |
| 736 | PG_FUNCTION_INFO_V1(floatvector_gt); |
| 737 | Datum floatvector_gt(PG_FUNCTION_ARGS) |
nothing calls this directly
no test coverage detected