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>
|
2019-02-05 17:05:33 +00:00
|
|
|
#include <optional>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Storages/IStorage.h>
|
2010-03-04 19:20:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2016-12-08 02:49:04 +00:00
|
|
|
class Context;
|
|
|
|
|
|
|
|
|
2017-06-25 00:17:08 +00:00
|
|
|
/** 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).
|
2017-06-10 09:04:31 +00:00
|
|
|
*
|
|
|
|
* 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,
|
2018-10-13 14:33:43 +00:00
|
|
|
* the table could give you not exactly 1..limit range, but some arbitrary 'limit' numbers.
|
2019-08-20 16:13:18 +00:00
|
|
|
*
|
|
|
|
* In multithreaded case, if even_distributed is False, implementation with atomic is used,
|
|
|
|
* and result is always in [0 ... limit - 1] range.
|
2010-03-04 19:20:28 +00:00
|
|
|
*/
|
2017-06-06 18:36:13 +00:00
|
|
|
class StorageSystemNumbers : public ext::shared_ptr_helper<StorageSystemNumbers>, public IStorage
|
2010-03-04 19:20:28 +00:00
|
|
|
{
|
2019-08-26 19:07:29 +00:00
|
|
|
friend struct ext::shared_ptr_helper<StorageSystemNumbers>;
|
2010-03-04 19:20:28 +00:00
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
std::string getName() const override { return "SystemNumbers"; }
|
|
|
|
std::string getTableName() const override { return name; }
|
2019-07-09 15:40:21 +00:00
|
|
|
std::string getDatabaseName() const override { return "system"; }
|
2011-08-15 02:24:44 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
BlockInputStreams read(
|
|
|
|
const Names & column_names,
|
2017-07-15 03:48:36 +00:00
|
|
|
const SelectQueryInfo & query_info,
|
2017-04-01 07:20:54 +00:00
|
|
|
const Context & context,
|
2018-04-19 15:18:26 +00:00
|
|
|
QueryProcessingStage::Enum processed_stage,
|
2019-02-18 23:38:44 +00:00
|
|
|
size_t max_block_size,
|
2017-06-02 15:54:39 +00:00
|
|
|
unsigned num_streams) override;
|
2011-08-15 02:24:44 +00:00
|
|
|
|
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
const std::string name;
|
|
|
|
bool multithreaded;
|
2019-08-20 10:29:04 +00:00
|
|
|
bool even_distribution;
|
2019-02-19 01:53:58 +00:00
|
|
|
std::optional<UInt64> limit;
|
|
|
|
UInt64 offset;
|
2014-10-10 15:45:43 +00:00
|
|
|
|
2017-11-04 03:20:18 +00:00
|
|
|
protected:
|
2019-08-20 10:28:20 +00:00
|
|
|
/// If even_distribution is true, numbers are distributed evenly between streams.
|
|
|
|
/// Otherwise, streams concurrently increment atomic.
|
|
|
|
StorageSystemNumbers(const std::string & name_, bool multithreaded_, std::optional<UInt64> limit_ = std::nullopt, UInt64 offset_ = 0, bool even_distribution_ = true);
|
2010-03-04 19:20:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|