* @param array The array of doubles to be converted to a SparseData * @param count The size of array * @return A SparseData representation of an input array of doubles */
| 1322 | * @return A SparseData representation of an input array of doubles |
| 1323 | */ |
| 1324 | SparseData float8arr_to_sdata(double *array, int count) { |
| 1325 | return arr_to_sdata((char *)array, sizeof(float8), FLOAT8OID, count); |
| 1326 | } |
| 1327 | |
| 1328 | /** |
| 1329 | * @param array The array of elements to be converted to a SparseData |
no test coverage detected