| 98 | } |
| 99 | |
| 100 | static void writeAggResultWithoutNullToVector(ValueVector& vector, uint64_t pos, |
| 101 | AggregateState* aggregateState) { |
| 102 | vector.setNull(pos, false); |
| 103 | aggregateState->writeToVector(&vector, pos); |
| 104 | } |
| 105 | |
| 106 | static std::vector<move_agg_result_to_vector_func> getMoveAggResultToVectorFuncs( |
| 107 | std::vector<AggregateFunction>& aggregateFunctions) { |
nothing calls this directly
no test coverage detected