ClickHouse/dbms/include/DB/Storages/StorageSystemOne.h

39 lines
1.0 KiB
C
Raw Normal View History

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