mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 03:12:43 +00:00
777b5bc15b
... IStorage has deleted copy ctor / assignment already
25 lines
650 B
C++
25 lines
650 B
C++
#pragma once
|
|
|
|
#include <DataTypes/DataTypeString.h>
|
|
#include <DataTypes/DataTypesNumber.h>
|
|
#include <Storages/System/IStorageSystemOneBlock.h>
|
|
|
|
namespace DB
|
|
{
|
|
class StorageSystemAggregateFunctionCombinators final : public IStorageSystemOneBlock<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();
|
|
};
|
|
}
|