| 697 | |
| 698 | PG_FUNCTION_INFO_V1(floatvector_le); |
| 699 | Datum floatvector_le(PG_FUNCTION_ARGS) |
| 700 | { |
| 701 | FloatVector *a = (FloatVector *)PG_GETARG_FLOATVECTOR_P(0); |
| 702 | FloatVector *b = (FloatVector *)PG_GETARG_FLOATVECTOR_P(1); |
| 703 | PG_RETURN_BOOL(floatvector_cmp_internal(a, b) <= 0); |
| 704 | } |
| 705 | |
| 706 | PG_FUNCTION_INFO_V1(floatvector_eq); |
| 707 | Datum floatvector_eq(PG_FUNCTION_ARGS) |
nothing calls this directly
no test coverage detected