forked from ClickHouse/ClickHouse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTableFunctionFuzzJSON.h
More file actions
43 lines (31 loc) · 1.04 KB
/
TableFunctionFuzzJSON.h
File metadata and controls
43 lines (31 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#pragma once
#include <optional>
#include <Storages/StorageFuzzJSON.h>
#include <TableFunctions/ITableFunction.h>
#include "config.h"
#if USE_RAPIDJSON || USE_SIMDJSON
namespace DB
{
class TableFunctionFuzzJSON : public ITableFunction
{
public:
static constexpr auto name = "fuzzJSON";
std::string getName() const override { return name; }
void parseArguments(const ASTPtr & ast_function, ContextPtr context) override;
ColumnsDescription getActualTableStructure(ContextPtr context, bool is_insert_query) const override;
private:
StoragePtr executeImpl(
const ASTPtr & ast_function,
ContextPtr context,
const std::string & table_name,
ColumnsDescription cached_columns,
bool is_insert_query) const override;
const char * getStorageTypeName() const override { return "FuzzJSON"; }
String source;
std::optional<UInt64> random_seed;
std::optional<bool> should_reuse_output;
std::optional<UInt64> max_output_length;
StorageFuzzJSON::Configuration configuration;
};
}
#endif