2014-07-29 14:05:15 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <Poco/SharedPtr.h>
|
|
|
|
|
|
|
|
|
|
#include <DB/Storages/IStorage.h>
|
|
|
|
|
#include <DB/Interpreters/Context.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
using Poco::SharedPtr;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Реализует системную таблицу tables, которая позволяет получить информацию о всех таблицах.
|
|
|
|
|
*/
|
|
|
|
|
class StorageSystemParts : public IStorage
|
|
|
|
|
{
|
|
|
|
|
public:
|
2015-01-21 03:56:28 +00:00
|
|
|
|
static StoragePtr create(const std::string & name_);
|
2014-07-29 14:05:15 +00:00
|
|
|
|
|
2014-10-03 17:55:36 +00:00
|
|
|
|
std::string getName() const override{ return "SystemParts"; }
|
|
|
|
|
std::string getTableName() const override { return name; }
|
2014-07-29 14:05:15 +00:00
|
|
|
|
|
2014-10-10 15:45:43 +00:00
|
|
|
|
const NamesAndTypesList & getColumnsListImpl() const override { return columns; }
|
2014-07-29 14:05:15 +00:00
|
|
|
|
|
|
|
|
|
BlockInputStreams read(
|
|
|
|
|
const Names & column_names,
|
|
|
|
|
ASTPtr query,
|
2014-12-17 11:53:17 +00:00
|
|
|
|
const Context & context,
|
2014-07-29 14:05:15 +00:00
|
|
|
|
const Settings & settings,
|
|
|
|
|
QueryProcessingStage::Enum & processed_stage,
|
|
|
|
|
size_t max_block_size = DEFAULT_BLOCK_SIZE,
|
2014-10-03 17:55:36 +00:00
|
|
|
|
unsigned threads = 1) override;
|
2014-07-29 14:05:15 +00:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
const std::string name;
|
|
|
|
|
NamesAndTypesList columns;
|
|
|
|
|
|
2015-01-21 03:56:28 +00:00
|
|
|
|
StorageSystemParts(const std::string & name_);
|
2014-07-29 14:05:15 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|