* svec_from_string - converts a text into an svec */
| 73 | * svec_from_string - converts a text into an svec |
| 74 | */ |
| 75 | Datum svec_from_string(PG_FUNCTION_ARGS) |
| 76 | { |
| 77 | char *str = pstrdup(text_to_cstring(PG_GETARG_TEXT_P(0))); |
| 78 | SvecType *result = svec_in_internal(str); |
| 79 | PG_RETURN_SVECTYPE_P(result); |
| 80 | } |
| 81 | |
| 82 | typedef struct |
| 83 | { |
nothing calls this directly
no test coverage detected