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

37 lines
856 B
C++
Raw Normal View History

2015-04-24 12:26:23 +00:00
#pragma once
2017-06-06 17:18:32 +00:00
#include <ext/shared_ptr_helper.h>
#include <Storages/System/IStorageSystemOneBlock.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 : public ext::shared_ptr_helper<StorageSystemColumns>, public IStorage
2015-04-24 12:26:23 +00:00
{
public:
std::string getName() const override { return "SystemColumns"; }
2015-04-24 12:26:23 +00:00
std::string getTableName() const override { return name; }
2015-04-24 12:26:23 +00:00
BlockInputStreams read(
const Names & column_names,
const SelectQueryInfo & query_info,
const Context & context,
QueryProcessingStage::Enum processed_stage,
size_t max_block_size,
unsigned num_streams) override;
private:
const std::string name;
2015-04-24 12:26:23 +00:00
protected:
StorageSystemColumns(const std::string & name_);
2015-04-24 12:26:23 +00:00
};
}