MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / insertResultInto

Method insertResultInto

src/AggregateFunctions/SingleValueData.cpp:169–174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167
168template <typename T>
169void SingleValueDataFixed<T>::insertResultInto(IColumn & to, const DataTypePtr &) const
170{
171 /// value is set to 0 in the constructor (also with JIT), so no need to check has_data()
172 chassert(has() || value == T{});
173 assert_cast<ColVecType &>(to).getData().push_back(value);
174}
175
176template <typename T>
177void SingleValueDataFixed<T>::write(WriteBuffer & buf, const ISerialization &) const

Callers 11

estimateCardinalityMethod · 0.45
writeOutCurrentRowMethod · 0.45
insertRowMethod · 0.45
finishGroupMethod · 0.45
finishGroupMethod · 0.45
insertResultIntoBatchMethod · 0.45
convertToValuesMethod · 0.45
executeImplMethod · 0.45
executeImplMethod · 0.45
executeImplMethod · 0.45

Calls 9

getDataFunction · 0.85
push_backMethod · 0.45
getDataMethod · 0.45
getMethod · 0.45
insertDataMethod · 0.45
insertDefaultMethod · 0.45
insertMethod · 0.45
insertDefaultIntoMethod · 0.45
insertFromMethod · 0.45

Tested by

no test coverage detected