| 743 | |
| 744 | PG_FUNCTION_INFO_V1(floatvector_cmp); |
| 745 | Datum floatvector_cmp(PG_FUNCTION_ARGS) |
| 746 | { |
| 747 | FloatVector *a = (FloatVector *)PG_GETARG_FLOATVECTOR_P(0); |
| 748 | FloatVector *b = (FloatVector *)PG_GETARG_FLOATVECTOR_P(1); |
| 749 | PG_RETURN_INT32(floatvector_cmp_internal(a, b)); |
| 750 | } |
| 751 | |
| 752 | static int floatvector_fastcmp(Datum x, Datum y, SortSupport) |
| 753 | { |
nothing calls this directly
no test coverage detected