* svec_in - reads in a string and convert that to an svec */
| 181 | * svec_in - reads in a string and convert that to an svec |
| 182 | */ |
| 183 | Datum svec_in(PG_FUNCTION_ARGS) |
| 184 | { |
| 185 | char *str = pstrdup(PG_GETARG_CSTRING(0)); |
| 186 | SvecType *result = svec_in_internal(str); |
| 187 | PG_RETURN_SVECTYPE_P(result); |
| 188 | } |
| 189 | |
| 190 | SvecType * svec_in_internal(char * str) |
| 191 | { |
nothing calls this directly
no test coverage detected