2020-03-10 13:01:29 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <optional>
|
|
|
|
#include <Storages/IStorage.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
/** Implements a table engine for the system table "zeros".
|
|
|
|
* The table contains the only column zero UInt8.
|
|
|
|
* From this table, you can read non-materialized zeros.
|
|
|
|
*
|
|
|
|
* You could also specify a limit (how many zeros to give).
|
|
|
|
* If multithreaded is specified, zeros will be generated in several streams.
|
|
|
|
*/
|
2022-05-03 06:43:28 +00:00
|
|
|
class StorageSystemZeros final : public IStorage
|
2020-03-10 13:01:29 +00:00
|
|
|
{
|
|
|
|
public:
|
2022-04-19 20:47:29 +00:00
|
|
|
/// If even_distribution is true, numbers are distributed evenly between streams.
|
|
|
|
/// Otherwise, streams concurrently increment atomic.
|
|
|
|
StorageSystemZeros(const StorageID & table_id_, bool multithreaded_, std::optional<UInt64> limit_ = std::nullopt);
|
|
|
|
|
2020-03-10 13:01:29 +00:00
|
|
|
std::string getName() const override { return "SystemZeros"; }
|
|
|
|
|
2020-08-06 12:24:05 +00:00
|
|
|
Pipe read(
|
2020-06-15 19:08:58 +00:00
|
|
|
const Names & column_names,
|
2021-07-09 03:15:41 +00:00
|
|
|
const StorageSnapshotPtr & storage_snapshot,
|
2020-09-20 17:52:17 +00:00
|
|
|
SelectQueryInfo & query_info,
|
2021-04-10 23:33:54 +00:00
|
|
|
ContextPtr context,
|
2020-06-15 19:08:58 +00:00
|
|
|
QueryProcessingStage::Enum processed_stage,
|
|
|
|
size_t max_block_size,
|
|
|
|
unsigned num_streams) override;
|
2020-03-10 13:01:29 +00:00
|
|
|
|
|
|
|
bool hasEvenlyDistributedRead() const override { return true; }
|
2021-11-19 10:25:55 +00:00
|
|
|
bool isSystemStorage() const override { return true; }
|
2022-02-14 19:47:17 +00:00
|
|
|
bool supportsTransactions() const override { return true; }
|
2020-03-10 13:01:29 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool multithreaded;
|
|
|
|
std::optional<UInt64> limit;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|