| 83 | |
| 84 | static inline void printout_svec(SvecType *svec, char *msg, int stop); |
| 85 | static inline void printout_svec(SvecType *svec, char *msg, int stop) |
| 86 | { |
| 87 | printout_sdata((SparseData)SVEC_SDATAPTR(svec), msg, stop); |
| 88 | elog(NOTICE,"len,dimension=%d,%d",VARSIZE(svec),svec->dimension); |
| 89 | } |
| 90 | |
| 91 | char *svec_out_internal(SvecType *svec); |
| 92 | SvecType *svec_from_sparsedata(SparseData sdata,bool trim); |
nothing calls this directly
no test coverage detected