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

47 lines
1.3 KiB
C++
Raw Normal View History

2011-08-28 02:22:23 +00:00
#pragma once
#include <ext/shared_ptr_helper.hpp>
#include <Storages/IStorage.h>
2011-08-28 02:22:23 +00:00
namespace DB
{
2016-12-08 02:49:04 +00:00
class Context;
2011-08-28 02:22:23 +00:00
/** Реализует хранилище для системной таблицы One.
* Таблица содержит единственный столбец dummy UInt8 и единственную строку со значением 0.
* Используется, если в запросе не указана таблица.
* Аналог таблицы DUAL в Oracle и MySQL.
*/
class StorageSystemOne : private ext::shared_ptr_helper<StorageSystemOne>, public IStorage
2011-08-28 02:22:23 +00:00
{
friend class ext::shared_ptr_helper<StorageSystemOne>;
2011-08-28 02:22:23 +00:00
public:
static StoragePtr create(const std::string & name_);
std::string getName() const override { return "SystemOne"; }
std::string getTableName() const override { return name; }
2011-08-28 02:22:23 +00:00
const NamesAndTypesList & getColumnsListImpl() const override { return columns; }
2011-08-28 02:22:23 +00:00
BlockInputStreams read(
const Names & column_names,
ASTPtr query,
const Context & context,
const Settings & settings,
QueryProcessingStage::Enum & processed_stage,
size_t max_block_size = DEFAULT_BLOCK_SIZE,
unsigned threads = 1) override;
2011-08-28 02:22:23 +00:00
private:
const std::string name;
NamesAndTypesList columns;
StorageSystemOne(const std::string & name_);
2011-08-28 02:22:23 +00:00
};
}