ClickHouse/src/Storages/System/StorageSystemDictionaries.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
582 B
C++
Raw Normal View History

#pragma once
#include <Storages/System/IStorageSystemOneBlock.h>
2016-12-08 02:49:04 +00:00
namespace DB
{
2016-12-08 02:49:04 +00:00
class Context;
class StorageSystemDictionaries final : public IStorageSystemOneBlock<StorageSystemDictionaries>
{
public:
std::string getName() const override { return "SystemDictionaries"; }
static NamesAndTypesList getNamesAndTypes();
NamesAndTypesList getVirtuals() const override;
protected:
using IStorageSystemOneBlock::IStorageSystemOneBlock;
void fillData(MutableColumns & res_columns, ContextPtr context, const SelectQueryInfo & query_info) const override;
};
}