mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
Fix build.
This commit is contained in:
parent
9a92e5eabb
commit
0800ceab5a
@ -46,7 +46,7 @@ struct NumericArraySink : public ArraySinkImpl<NumericArraySink<T>>
|
||||
ColumnArray::Offset current_offset = 0;
|
||||
|
||||
NumericArraySink(IColumn & elements_, ColumnArray::Offsets & offsets_, size_t column_size)
|
||||
: elements(elements_), offsets(offsets_)
|
||||
: elements(assert_cast<ColVecType&>(elements_)), offsets(offsets_)
|
||||
{
|
||||
offsets.resize(column_size);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user