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

41 lines
1.1 KiB
C++
Raw Normal View History

2015-04-24 12:26:23 +00:00
#pragma once
#include <ext/shared_ptr_helper.hpp>
#include <Storages/IStorage.h>
2016-12-08 02:49:04 +00:00
2015-04-24 12:26:23 +00:00
namespace DB
{
2016-12-08 02:49:04 +00:00
class Context;
/** Implements system table 'columns', that allows to get information about columns for every table.
2015-04-24 12:26:23 +00:00
*/
class StorageSystemColumns : private ext::shared_ptr_helper<StorageSystemColumns>, public IStorage
2015-04-24 12:26:23 +00:00
{
friend class ext::shared_ptr_helper<StorageSystemColumns>;
2015-04-24 12:26:23 +00:00
public:
static StoragePtr create(const std::string & name_);
2015-04-24 12:26:23 +00:00
std::string getName() const override { return "SystemColumns"; }
std::string getTableName() const override { return name; }
const NamesAndTypesList & getColumnsListImpl() const override { return columns; }
2015-04-24 12:26:23 +00:00
BlockInputStreams read(
const Names & column_names,
const ASTPtr & query,
const Context & context,
QueryProcessingStage::Enum & processed_stage,
size_t max_block_size = DEFAULT_BLOCK_SIZE,
unsigned threads = 1) override;
2015-04-24 12:26:23 +00:00
private:
StorageSystemColumns(const std::string & name_);
2015-04-24 12:26:23 +00:00
private:
const std::string name;
NamesAndTypesList columns;
2015-04-24 12:26:23 +00:00
};
}