2012-06-18 07:49:19 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
2016-08-30 19:27:15 +00:00
|
|
|
|
#include <ext/shared_ptr_helper.hpp>
|
2012-06-18 07:49:19 +00:00
|
|
|
|
#include <DB/Storages/IStorage.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
|
{
|
|
|
|
|
|
2016-12-08 02:49:04 +00:00
|
|
|
|
class Context;
|
|
|
|
|
|
|
|
|
|
|
2012-06-18 07:49:19 +00:00
|
|
|
|
/** Реализует системную таблицу databases, которая позволяет получить информацию о всех БД.
|
|
|
|
|
*/
|
2016-08-30 19:27:15 +00:00
|
|
|
|
class StorageSystemDatabases : private ext::shared_ptr_helper<StorageSystemDatabases>, public IStorage
|
2012-06-18 07:49:19 +00:00
|
|
|
|
{
|
2016-08-30 19:27:15 +00:00
|
|
|
|
friend class ext::shared_ptr_helper<StorageSystemDatabases>;
|
2016-08-26 21:25:05 +00:00
|
|
|
|
|
2012-06-18 07:49:19 +00:00
|
|
|
|
public:
|
2015-01-21 03:56:28 +00:00
|
|
|
|
static StoragePtr create(const std::string & name_);
|
2014-10-06 05:18:17 +00:00
|
|
|
|
|
2014-10-03 17:55:36 +00:00
|
|
|
|
std::string getName() const override { return "SystemDatabases"; }
|
|
|
|
|
std::string getTableName() const override { return name; }
|
2012-06-18 07:49:19 +00:00
|
|
|
|
|
2014-10-10 15:45:43 +00:00
|
|
|
|
const NamesAndTypesList & getColumnsListImpl() const override { return columns; }
|
2012-06-18 07:49:19 +00:00
|
|
|
|
|
|
|
|
|
BlockInputStreams read(
|
|
|
|
|
const Names & column_names,
|
|
|
|
|
ASTPtr query,
|
2014-12-17 11:53:17 +00:00
|
|
|
|
const Context & context,
|
2013-02-01 19:02:04 +00:00
|
|
|
|
const Settings & settings,
|
2012-06-18 07:49:19 +00:00
|
|
|
|
QueryProcessingStage::Enum & processed_stage,
|
|
|
|
|
size_t max_block_size = DEFAULT_BLOCK_SIZE,
|
2014-10-03 17:55:36 +00:00
|
|
|
|
unsigned threads = 1) override;
|
2012-06-18 07:49:19 +00:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
const std::string name;
|
|
|
|
|
NamesAndTypesList columns;
|
2014-10-06 05:18:17 +00:00
|
|
|
|
|
2015-01-21 03:56:28 +00:00
|
|
|
|
StorageSystemDatabases(const std::string & name_);
|
2012-06-18 07:49:19 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|