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

46 lines
1.2 KiB
C
Raw Normal View History

2011-08-27 22:43:31 +00:00
#pragma once
2010-03-04 19:20:28 +00:00
#include <Poco/SharedPtr.h>
#include <DB/Storages/IStorage.h>
namespace DB
{
using Poco::SharedPtr;
/** Реализует хранилище для системной таблицы Numbers.
* Таблица содержит единственный столбец number UInt64.
* Из этой таблицы можно прочитать все натуральные числа, начиная с 0 (до 2^64 - 1, а потом заново).
*/
class StorageSystemNumbers : public IStorage
{
public:
static StoragePtr create(const std::string & name_, bool multithreaded_ = false);
std::string getName() const override { return "SystemNumbers"; }
std::string getTableName() const override { return name; }
2011-08-15 02:24:44 +00:00
const NamesAndTypesList & getColumnsListImpl() const override { return columns; }
2010-03-04 19:20:28 +00:00
2012-01-09 19:20:48 +00:00
BlockInputStreams read(
2011-08-09 15:57:33 +00:00
const Names & column_names,
2011-08-15 01:12:57 +00:00
ASTPtr query,
const Context & context,
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,
unsigned threads = 1) override;
2011-08-15 02:24:44 +00:00
private:
2011-08-18 20:33:20 +00:00
const std::string name;
2011-11-01 17:12:11 +00:00
NamesAndTypesList columns;
bool multithreaded;
StorageSystemNumbers(const std::string & name_, bool multithreaded_);
2010-03-04 19:20:28 +00:00
};
}