ClickHouse/dbms/include/DB/Storages/System/StorageSystemTables.h

44 lines
1.1 KiB
C++
Raw Normal View History

2012-05-08 11:19:00 +00:00
#pragma once
#include <ext/shared_ptr_helper.hpp>
2012-05-08 11:19:00 +00:00
#include <DB/Storages/IStorage.h>
namespace DB
{
2016-12-08 02:49:04 +00:00
class Context;
2012-05-08 11:19:00 +00:00
/** Реализует системную таблицу tables, которая позволяет получить информацию о всех таблицах.
*/
class StorageSystemTables : private ext::shared_ptr_helper<StorageSystemTables>, public IStorage
2012-05-08 11:19:00 +00:00
{
friend class ext::shared_ptr_helper<StorageSystemTables>;
2012-05-08 11:19:00 +00:00
public:
static StoragePtr create(const std::string & name_);
std::string getName() const override { return "SystemTables"; }
std::string getTableName() const override { return name; }
2012-05-08 11:19:00 +00:00
const NamesAndTypesList & getColumnsListImpl() const override { return columns; }
2012-05-08 11:19:00 +00:00
BlockInputStreams read(
const Names & column_names,
ASTPtr query,
const Context & context,
const Settings & settings,
2012-05-22 18:32:45 +00:00
QueryProcessingStage::Enum & processed_stage,
2012-05-08 11:19:00 +00:00
size_t max_block_size = DEFAULT_BLOCK_SIZE,
unsigned threads = 1) override;
2012-05-08 11:19:00 +00:00
private:
const std::string name;
NamesAndTypesList columns;
StorageSystemTables(const std::string & name_);
2012-05-08 11:19:00 +00:00
};
}