ClickHouse/src/Storages/System/StorageSystemAggregateFunctionCombinators.h
2021-06-16 23:28:41 +03:00

28 lines
887 B
C++

#pragma once
#include <DataTypes/DataTypeString.h>
#include <DataTypes/DataTypesNumber.h>
#include <Storages/System/IStorageSystemOneBlock.h>
#include <common/shared_ptr_helper.h>
namespace DB
{
class StorageSystemAggregateFunctionCombinators final : public shared_ptr_helper<StorageSystemAggregateFunctionCombinators>,
public IStorageSystemOneBlock<StorageSystemAggregateFunctionCombinators>
{
friend struct shared_ptr_helper<StorageSystemAggregateFunctionCombinators>;
protected:
void fillData(MutableColumns & res_columns, ContextPtr context, const SelectQueryInfo & query_info) const override;
using IStorageSystemOneBlock::IStorageSystemOneBlock;
public:
std::string getName() const override
{
return "SystemAggregateFunctionCombinators";
}
static NamesAndTypesList getNamesAndTypes();
};
}