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

50 lines
1.5 KiB
C++
Raw Normal View History

2011-08-27 22:43:31 +00:00
#pragma once
2010-03-04 19:20:28 +00:00
2017-06-06 17:18:32 +00:00
#include <ext/shared_ptr_helper.h>
#include <Storages/IStorage.h>
2010-03-04 19:20:28 +00:00
namespace DB
{
2016-12-08 02:49:04 +00:00
class Context;
/** Implements a table engine for the system table "numbers".
2017-04-16 15:00:33 +00:00
* The table contains the only column number UInt64.
* From this table, you can read all natural numbers, starting from 0 (to 2^64 - 1, and then again).
*
* You could also specify a limit (how many numbers to give).
* If multithreaded is specified, numbers will be generated in several streams
* (and result could be out of order). If both multithreaded and limit are specified,
* the table could give you not exactly 1..limit range, but some arbitary 'limit' numbers.
2010-03-04 19:20:28 +00:00
*/
class StorageSystemNumbers : public ext::shared_ptr_helper<StorageSystemNumbers>, public IStorage
2010-03-04 19:20:28 +00:00
{
friend class ext::shared_ptr_helper<StorageSystemNumbers>;
2010-03-04 19:20:28 +00:00
public:
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
BlockInputStreams read(
const Names & column_names,
const ASTPtr & query,
const Context & context,
QueryProcessingStage::Enum & processed_stage,
2017-06-02 15:54:39 +00:00
size_t max_block_size,
unsigned num_streams) override;
2011-08-15 02:24:44 +00:00
private:
const std::string name;
NamesAndTypesList columns;
bool multithreaded;
size_t limit;
/// limit: 0 means unlimited.
StorageSystemNumbers(const std::string & name_, bool multithreaded_, size_t limit_ = 0);
2010-03-04 19:20:28 +00:00
};
}