| 750 | } |
| 751 | |
| 752 | static int floatvector_fastcmp(Datum x, Datum y, SortSupport) |
| 753 | { |
| 754 | FloatVector *a = (FloatVector *)DatumGetFloatVector(x); |
| 755 | FloatVector *b = (FloatVector *)DatumGetFloatVector(y); |
| 756 | return floatvector_cmp_internal(a, b); |
| 757 | } |
| 758 | |
| 759 | PG_FUNCTION_INFO_V1(floatvector_sortsupport); |
| 760 | Datum floatvector_sortsupport(PG_FUNCTION_ARGS) |
nothing calls this directly
no test coverage detected