mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
10 lines
181 B
C++
10 lines
181 B
C++
#pragma once
|
|
|
|
#include <Core/Block.h>
|
|
|
|
namespace DB
|
|
{
|
|
/// Converts aggregate function columns with non-finalized states to final values
|
|
void finalizeBlock(Block & block);
|
|
}
|