| 214 | } |
| 215 | |
| 216 | Datum input_floatvector_in(char* str, Oid typioparam, int32 atttypmod) |
| 217 | { |
| 218 | if (str == NULL) { |
| 219 | return (Datum)0; |
| 220 | } |
| 221 | FloatVector *result = floatvector_input(str, atttypmod); |
| 222 | PG_RETURN_FLOATVECTOR_P(result); |
| 223 | } |
| 224 | |
| 225 | /* |
| 226 | * Convert internal representation to textual representation |
nothing calls this directly
no test coverage detected