* svec_out - outputs a sparse vector as a C string */
| 124 | * svec_out - outputs a sparse vector as a C string |
| 125 | */ |
| 126 | Datum svec_out(PG_FUNCTION_ARGS) |
| 127 | { |
| 128 | SvecType *svec = PG_GETARG_SVECTYPE_P(0); |
| 129 | char *result = svec_out_internal(svec); |
| 130 | PG_RETURN_CSTRING(result); |
| 131 | } |
| 132 | |
| 133 | char * svec_out_internal(SvecType *svec) |
| 134 | { |
nothing calls this directly
no test coverage detected