mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 12:32:04 +00:00
29 lines
760 B
C++
29 lines
760 B
C++
#pragma once
|
|
|
|
#include <DataTypes/DataTypeString.h>
|
|
#include <Storages/System/IStorageSystemOneBlock.h>
|
|
#include <ext/shared_ptr_helper.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class StorageSystemTableEngines : public ext::shared_ptr_helper<StorageSystemTableEngines>,
|
|
public IStorageSystemOneBlock<StorageSystemTableEngines>
|
|
{
|
|
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();
|
|
};
|
|
|
|
}
|