| 206 | */ |
| 207 | PG_FUNCTION_INFO_V1(floatvector_in); |
| 208 | Datum floatvector_in(PG_FUNCTION_ARGS) |
| 209 | { |
| 210 | char *s = PG_GETARG_CSTRING(0); |
| 211 | int32 atttypmod = PG_GETARG_INT32(2); |
| 212 | FloatVector *result = floatvector_input(s, atttypmod); |
| 213 | PG_RETURN_FLOATVECTOR_P(result); |
| 214 | } |
| 215 | |
| 216 | Datum input_floatvector_in(char* str, Oid typioparam, int32 atttypmod) |
| 217 | { |
nothing calls this directly
no test coverage detected