ClickHouse/src/Storages/System/StorageSystemTableFunctions.h

31 lines
780 B
C++
Raw Normal View History

#pragma once
#include <DataTypes/DataTypeString.h>
#include <Storages/System/IStorageSystemOneBlock.h>
#include <ext/shared_ptr_helper.h>
namespace DB
{
class StorageSystemTableFunctions final : public ext::shared_ptr_helper<StorageSystemTableFunctions>,
public IStorageSystemOneBlock<StorageSystemTableFunctions>
{
2019-08-26 19:07:29 +00:00
friend struct ext::shared_ptr_helper<StorageSystemTableFunctions>;
protected:
using IStorageSystemOneBlock::IStorageSystemOneBlock;
void fillData(MutableColumns & res_columns, const Context & context, const SelectQueryInfo & query_info) const override;
public:
std::string getName() const override
{
return "SystemTableFunctions";
}
static NamesAndTypesList getNamesAndTypes();
};
}