ClickHouse/dbms/src/Storages/System/StorageSystemFormats.h

25 lines
661 B
C++
Raw Normal View History

#pragma once
#include <Storages/System/IStorageSystemOneBlock.h>
#include <ext/shared_ptr_helper.h>
namespace DB
{
class StorageSystemFormats : public ext::shared_ptr_helper<StorageSystemFormats>, public IStorageSystemOneBlock<StorageSystemFormats>
{
2019-08-26 19:07:29 +00:00
friend struct ext::shared_ptr_helper<StorageSystemFormats>;
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 "SystemFormats";
}
static NamesAndTypesList getNamesAndTypes();
};
}