#include #include #include #include #include #include #include #include #include namespace DB { namespace ErrorCodes { extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH; } StoragePtr TableFunctionNumbers::executeImpl(const ASTPtr & ast_function, const Context & context) const { ASTs & args_func = typeid_cast(*ast_function).children; if (args_func.size() != 1) throw Exception("Table function 'numbers' requires exactly one argument: amount of numbers.", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH); ASTs & args = typeid_cast(*args_func.at(0)).children; if (args.size() != 1) throw Exception("Table function 'numbers' requires exactly one argument: amount of numbers.", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH); args[0] = evaluateConstantExpressionOrIdentifierAsLiteral(args[0], context); UInt64 limit = static_cast(*args[0]).value.safeGet(); auto res = StorageSystemNumbers::create(getName(), false, limit); res->startup(); return res; } void registerTableFunctionNumbers(TableFunctionFactory & factory) { factory.registerFunction(); } }