ClickHouse/dbms/TableFunctions/TableFunctionGenerateRandom.cpp

83 lines
2.6 KiB
C++
Raw Normal View History

2020-02-26 14:12:07 +00:00
#include <Common/typeid_cast.h>
#include <Common/Exception.h>
#include <Core/Block.h>
2020-03-06 02:12:18 +00:00
#include <Storages/StorageGenerateRandom.h>
2020-02-26 14:12:07 +00:00
#include <Parsers/ASTExpressionList.h>
#include <Parsers/ASTLiteral.h>
#include <Parsers/ASTFunction.h>
#include <TableFunctions/ITableFunction.h>
#include <TableFunctions/TableFunctionFactory.h>
2020-03-06 02:12:18 +00:00
#include <TableFunctions/TableFunctionGenerateRandom.h>
2020-02-26 14:12:07 +00:00
#include <TableFunctions/parseColumnsListForTableFunction.h>
#include "registerTableFunctions.h"
namespace DB
{
namespace ErrorCodes
{
extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH;
extern const int LOGICAL_ERROR;
}
2020-03-06 02:12:18 +00:00
StoragePtr TableFunctionGenerateRandom::executeImpl(const ASTPtr & ast_function, const Context & context, const std::string & table_name) const
2020-02-26 14:12:07 +00:00
{
ASTs & args_func = ast_function->children;
if (args_func.size() != 1)
throw Exception("Table function '" + getName() + "' must have arguments.", ErrorCodes::LOGICAL_ERROR);
ASTs & args = args_func.at(0)->children;
2020-03-09 01:59:08 +00:00
if (args.empty())
2020-03-05 15:39:03 +00:00
throw Exception("Table function '" + getName() + "' requires at least one argument: "
" structure, [random_seed, max_string_length, max_array_length].",
2020-02-26 14:12:07 +00:00
ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH);
if (args.size() > 4)
2020-03-05 15:39:03 +00:00
throw Exception("Table function '" + getName() + "' requires at most four arguments: "
" structure, [random_seed, max_string_length, max_array_length].",
2020-02-26 14:12:07 +00:00
ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH);
/// Parsing first argument as table structure and creating a sample block
std::string structure = args[0]->as<const ASTLiteral &>().value.safeGet<String>();
2020-02-26 14:12:07 +00:00
UInt64 max_string_length = 10;
UInt64 max_array_length = 10;
2020-03-07 22:07:09 +00:00
std::optional<UInt64> random_seed;
2020-02-26 14:12:07 +00:00
if (args.size() >= 2)
{
const Field & value = args[1]->as<const ASTLiteral &>().value;
if (!value.isNull())
random_seed = value.safeGet<UInt64>();
}
2020-02-26 14:12:07 +00:00
if (args.size() >= 3)
max_string_length = args[2]->as<const ASTLiteral &>().value.safeGet<UInt64>();
2020-02-26 14:12:07 +00:00
if (args.size() == 4)
max_array_length = args[3]->as<const ASTLiteral &>().value.safeGet<UInt64>();
2020-02-26 14:12:07 +00:00
ColumnsDescription columns = parseColumnsListFromString(structure, context);
2020-02-26 14:31:22 +00:00
2020-03-06 02:12:18 +00:00
auto res = StorageGenerateRandom::create(StorageID(getDatabaseName(), table_name), columns, max_array_length, max_string_length, random_seed);
2020-02-26 14:12:07 +00:00
res->startup();
return res;
}
void registerTableFunctionGenerate(TableFunctionFactory & factory)
{
2020-03-06 02:12:18 +00:00
factory.registerFunction<TableFunctionGenerateRandom>();
2020-02-26 14:12:07 +00:00
}
}