| 691 | PG_FUNCTION_INFO_V1( float8arr_hash); |
| 692 | |
| 693 | Datum |
| 694 | float8arr_hash(PG_FUNCTION_ARGS) { |
| 695 | ArrayType *array = PG_GETARG_ARRAYTYPE_P(0); |
| 696 | |
| 697 | PG_RETURN_INT32(float8arr_hash_internal(array)); |
| 698 | } |
| 699 | |
| 700 | PG_FUNCTION_INFO_V1( svec_pivot ); |
| 701 | /** |
nothing calls this directly
no test coverage detected