mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
25 lines
793 B
C++
25 lines
793 B
C++
#include <DataStreams/finalizeBlock.h>
|
|
#include <DataTypes/DataTypeAggregateFunction.h>
|
|
#include <Columns/ColumnAggregateFunction.h>
|
|
#include <Common/typeid_cast.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
void finalizeBlock(Block & block)
|
|
{
|
|
for (size_t i = 0; i < block.columns(); ++i)
|
|
{
|
|
ColumnWithTypeAndName & current = block.getByPosition(i);
|
|
const DataTypeAggregateFunction * unfinalized_type = typeid_cast<const DataTypeAggregateFunction *>(current.type.get());
|
|
|
|
if (unfinalized_type)
|
|
{
|
|
current.type = unfinalized_type->getReturnType();
|
|
if (current.column)
|
|
current.column = typeid_cast<const ColumnAggregateFunction &>(*current.column).convertToValues();
|
|
}
|
|
}
|
|
}
|
|
}
|