2020-02-26 14:12:07 +00:00
|
|
|
#pragma once
|
|
|
|
|
2020-03-07 20:35:55 +00:00
|
|
|
#include <optional>
|
2020-02-26 14:12:07 +00:00
|
|
|
#include <Storages/IStorage.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
/* Generates random data for given schema.
|
|
|
|
*/
|
2022-05-03 06:43:28 +00:00
|
|
|
class StorageGenerateRandom final : public IStorage
|
2020-02-26 14:12:07 +00:00
|
|
|
{
|
|
|
|
public:
|
2022-04-19 20:47:29 +00:00
|
|
|
StorageGenerateRandom(
|
|
|
|
const StorageID & table_id_,
|
|
|
|
const ColumnsDescription & columns_,
|
|
|
|
const String & comment,
|
|
|
|
UInt64 max_array_length,
|
|
|
|
UInt64 max_string_length,
|
|
|
|
std::optional<UInt64> random_seed);
|
|
|
|
|
2020-03-06 02:12:18 +00:00
|
|
|
std::string getName() const override { return "GenerateRandom"; }
|
2020-02-26 14:12:07 +00:00
|
|
|
|
2020-08-03 13:54:14 +00:00
|
|
|
Pipe read(
|
2020-02-26 14:12:07 +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-02-26 14:12:07 +00:00
|
|
|
QueryProcessingStage::Enum processed_stage,
|
|
|
|
size_t max_block_size,
|
2022-10-07 10:46:45 +00:00
|
|
|
size_t num_streams) override;
|
2020-02-26 14:12:07 +00:00
|
|
|
|
2022-02-14 19:47:17 +00:00
|
|
|
bool supportsTransactions() const override { return true; }
|
2020-02-26 14:12:07 +00:00
|
|
|
private:
|
|
|
|
UInt64 max_array_length = 10;
|
|
|
|
UInt64 max_string_length = 10;
|
|
|
|
UInt64 random_seed = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|