mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 04:12:19 +00:00
dbms: range_hashed dictGet*: add a missing call to resizing constructor of ColumnVector. [#METR-17111]
This commit is contained in:
parent
ac2f8dfb13
commit
240d5c5b58
@ -1224,7 +1224,7 @@ private:
|
||||
const auto & ids = id_col->getData();
|
||||
const PODArray<UInt16> dates(size, date_col->getData());
|
||||
|
||||
const auto out = new ColumnVector<Type>;
|
||||
const auto out = new ColumnVector<Type>{size};
|
||||
block.getByPosition(result).column = out;
|
||||
|
||||
auto & data = out->getData();
|
||||
|
Loading…
Reference in New Issue
Block a user