ClickHouse/src/Storages/System/StorageSystemTableEngines.h

29 lines
766 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 StorageSystemTableEngines final : public ext::shared_ptr_helper<StorageSystemTableEngines>,
public IStorageSystemOneBlock<StorageSystemTableEngines>
{
2019-08-26 19:07:29 +00:00
friend struct ext::shared_ptr_helper<StorageSystemTableEngines>;
protected:
void fillData(MutableColumns & res_columns, const Context & context, const SelectQueryInfo & query_info) const override;
using IStorageSystemOneBlock::IStorageSystemOneBlock;
public:
std::string getName() const override
{
return "SystemTableEngines";
}
static NamesAndTypesList getNamesAndTypes();
};
}