mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
495c6e03aa
* Replace all Context references with std::weak_ptr * Fix shared context captured by value * Fix build * Fix Context with named sessions * Fix copy context * Fix gcc build * Merge with master and fix build * Fix gcc-9 build
33 lines
1.0 KiB
C++
33 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include <TableFunctions/ITableFunction.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/* generateRandom(structure, [max_array_length, max_string_length, random_seed])
|
|
* - creates a temporary storage that generates columns with random data
|
|
*/
|
|
class TableFunctionGenerateRandom : public ITableFunction
|
|
{
|
|
public:
|
|
static constexpr auto name = "generateRandom";
|
|
std::string getName() const override { return name; }
|
|
bool hasStaticStructure() const override { return true; }
|
|
private:
|
|
StoragePtr executeImpl(const ASTPtr & ast_function, ContextPtr context, const std::string & table_name, ColumnsDescription cached_columns) const override;
|
|
const char * getStorageTypeName() const override { return "GenerateRandom"; }
|
|
|
|
ColumnsDescription getActualTableStructure(ContextPtr context) const override;
|
|
void parseArguments(const ASTPtr & ast_function, ContextPtr context) override;
|
|
|
|
String structure;
|
|
UInt64 max_string_length = 10;
|
|
UInt64 max_array_length = 10;
|
|
std::optional<UInt64> random_seed;
|
|
|
|
};
|
|
|
|
|
|
}
|