| 182 | } |
| 183 | |
| 184 | FloatVector *InitFloatVector(int dim) |
| 185 | { |
| 186 | int size = FLOATVECTOR_SIZE(dim); |
| 187 | FloatVector *result = (FloatVector *) palloc0(size); |
| 188 | SET_VARSIZE(result, size); |
| 189 | result->dim = dim; |
| 190 | return result; |
| 191 | } |
| 192 | |
| 193 | static float8 *CheckStateArray(ArrayType *statearray, const char *caller) |
| 194 | { |
no outgoing calls
no test coverage detected