2018-07-20 10:00:56 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-07-23 16:10:57 +00:00
|
|
|
#include <DataTypes/DataTypeString.h>
|
|
|
|
#include <DataTypes/DataTypesNumber.h>
|
|
|
|
#include <Storages/System/IStorageSystemOneBlock.h>
|
2019-08-26 19:07:29 +00:00
|
|
|
|
2018-07-20 10:00:56 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
2022-05-03 06:43:28 +00:00
|
|
|
class StorageSystemAggregateFunctionCombinators final : public IStorageSystemOneBlock<StorageSystemAggregateFunctionCombinators>
|
2018-07-20 10:00:56 +00:00
|
|
|
{
|
|
|
|
protected:
|
2021-04-10 23:33:54 +00:00
|
|
|
void fillData(MutableColumns & res_columns, ContextPtr context, const SelectQueryInfo & query_info) const override;
|
2018-07-20 10:00:56 +00:00
|
|
|
|
2018-07-23 16:10:57 +00:00
|
|
|
using IStorageSystemOneBlock::IStorageSystemOneBlock;
|
2018-07-24 14:28:56 +00:00
|
|
|
public:
|
2018-07-20 10:00:56 +00:00
|
|
|
|
|
|
|
std::string getName() const override
|
|
|
|
{
|
|
|
|
return "SystemAggregateFunctionCombinators";
|
|
|
|
}
|
|
|
|
|
2018-07-24 14:28:56 +00:00
|
|
|
static NamesAndTypesList getNamesAndTypes();
|
2018-07-20 10:00:56 +00:00
|
|
|
};
|
|
|
|
}
|