2012-05-08 11:19:00 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <Poco/SharedPtr.h>
|
|
|
|
|
|
|
|
|
|
#include <DB/Storages/IStorage.h>
|
|
|
|
|
#include <DB/DataStreams/IProfilingBlockInputStream.h>
|
|
|
|
|
#include <DB/Interpreters/Context.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
using Poco::SharedPtr;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Реализует системную таблицу tables, которая позволяет получить информацию о всех таблицах.
|
|
|
|
|
*/
|
|
|
|
|
class StorageSystemTables : public IStorage
|
|
|
|
|
{
|
|
|
|
|
public:
|
2013-02-06 11:26:35 +00:00
|
|
|
|
static StoragePtr create(const std::string & name_, const Context & context_);
|
2012-05-08 11:19:00 +00:00
|
|
|
|
|
|
|
|
|
std::string getName() const { return "SystemTables"; }
|
|
|
|
|
std::string getTableName() const { return name; }
|
|
|
|
|
|
|
|
|
|
const NamesAndTypesList & getColumnsList() const { return columns; }
|
|
|
|
|
|
|
|
|
|
BlockInputStreams read(
|
|
|
|
|
const Names & column_names,
|
|
|
|
|
ASTPtr query,
|
2013-02-01 19:02:04 +00:00
|
|
|
|
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,
|
2012-05-30 04:45:49 +00:00
|
|
|
|
unsigned threads = 1);
|
2012-05-08 11:19:00 +00:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
const std::string name;
|
|
|
|
|
const Context & context;
|
|
|
|
|
NamesAndTypesList columns;
|
2013-02-06 11:26:35 +00:00
|
|
|
|
|
|
|
|
|
StorageSystemTables(const std::string & name_, const Context & context_);
|
2012-05-08 11:19:00 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|