mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
clickhouse: fixed a minor bug with aggregation and constants [#CONV-6703].
This commit is contained in:
parent
82742b4ac4
commit
8abe29d8d0
@ -98,12 +98,6 @@ void Aggregator::initialize(Block & block)
|
||||
|
||||
sample.insert(col);
|
||||
}
|
||||
|
||||
/// Вставим в блок результата все столбцы-константы из исходного блока, так как они могут ещё пригодиться.
|
||||
size_t columns = block.columns();
|
||||
for (size_t i = 0; i < columns; ++i)
|
||||
if (block.getByPosition(i).column->isConst())
|
||||
sample.insert(block.getByPosition(i).cloneEmpty());
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user