| 167 | |
| 168 | template <typename T> |
| 169 | void 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 | |
| 176 | template <typename T> |
| 177 | void SingleValueDataFixed<T>::write(WriteBuffer & buf, const ISerialization &) const |
no test coverage detected