mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
Fix build.
This commit is contained in:
parent
d3adcc1cb0
commit
9acea16b7f
@ -7,6 +7,8 @@
|
|||||||
namespace DB
|
namespace DB
|
||||||
{
|
{
|
||||||
|
|
||||||
|
AggregatingSortedAlgorithm::ColumnsDefinition::ColumnsDefinition() = default;
|
||||||
|
AggregatingSortedAlgorithm::ColumnsDefinition::ColumnsDefinition(ColumnsDefinition &&) = default;
|
||||||
AggregatingSortedAlgorithm::ColumnsDefinition::~ColumnsDefinition() = default;
|
AggregatingSortedAlgorithm::ColumnsDefinition::~ColumnsDefinition() = default;
|
||||||
|
|
||||||
/// Stores information for aggregation of AggregateFunction columns
|
/// Stores information for aggregation of AggregateFunction columns
|
||||||
|
@ -31,6 +31,8 @@ public:
|
|||||||
/// * simple aggregate functions, which store states into ordinary columns
|
/// * simple aggregate functions, which store states into ordinary columns
|
||||||
struct ColumnsDefinition
|
struct ColumnsDefinition
|
||||||
{
|
{
|
||||||
|
ColumnsDefinition();
|
||||||
|
ColumnsDefinition(ColumnsDefinition &&) noexcept;
|
||||||
~ColumnsDefinition();
|
~ColumnsDefinition();
|
||||||
|
|
||||||
/// Columns with which numbers should not be aggregated.
|
/// Columns with which numbers should not be aggregated.
|
||||||
|
Loading…
Reference in New Issue
Block a user