| 689 | |
| 690 | PG_FUNCTION_INFO_V1(floatvector_lt); |
| 691 | Datum floatvector_lt(PG_FUNCTION_ARGS) |
| 692 | { |
| 693 | FloatVector *a = (FloatVector *)PG_GETARG_FLOATVECTOR_P(0); |
| 694 | FloatVector *b = (FloatVector *)PG_GETARG_FLOATVECTOR_P(1); |
| 695 | PG_RETURN_BOOL(floatvector_cmp_internal(a, b) < 0); |
| 696 | } |
| 697 | |
| 698 | PG_FUNCTION_INFO_V1(floatvector_le); |
| 699 | Datum floatvector_le(PG_FUNCTION_ARGS) |
nothing calls this directly
no test coverage detected