mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
15 lines
301 B
C++
15 lines
301 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
namespace DB
|
|
{
|
|
using AggregateDataPtr = char *;
|
|
using AggregateDataPtrs = std::vector<AggregateDataPtr>;
|
|
using ConstAggregateDataPtr = const char *;
|
|
|
|
class IAggregateFunction;
|
|
using AggregateFunctionPtr = std::shared_ptr<const IAggregateFunction>;
|
|
}
|