2017-06-10 09:04:31 +00:00
|
|
|
#include <TableFunctions/ITableFunction.h>
|
|
|
|
#include <TableFunctions/TableFunctionNumbers.h>
|
|
|
|
#include <TableFunctions/TableFunctionFactory.h>
|
|
|
|
#include <Parsers/ASTFunction.h>
|
|
|
|
#include <Parsers/ASTLiteral.h>
|
2017-07-13 20:58:19 +00:00
|
|
|
#include <Common/typeid_cast.h>
|
2017-06-10 09:04:31 +00:00
|
|
|
#include <Storages/System/StorageSystemNumbers.h>
|
2020-01-26 09:49:53 +00:00
|
|
|
#include <Access/AccessFlags.h>
|
2017-06-10 09:04:31 +00:00
|
|
|
#include <Interpreters/evaluateConstantExpression.h>
|
2020-02-10 15:50:12 +00:00
|
|
|
#include <Interpreters/Context.h>
|
2019-12-15 06:34:43 +00:00
|
|
|
#include "registerTableFunctions.h"
|
2017-06-10 09:04:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH;
|
|
|
|
}
|
|
|
|
|
2019-08-19 12:27:51 +00:00
|
|
|
template <bool multithreaded>
|
|
|
|
StoragePtr TableFunctionNumbers<multithreaded>::executeImpl(const ASTPtr & ast_function, const Context & context, const std::string & table_name) const
|
2017-06-10 09:04:31 +00:00
|
|
|
{
|
2019-03-11 13:22:51 +00:00
|
|
|
if (const auto * function = ast_function->as<ASTFunction>())
|
2018-06-20 08:09:09 +00:00
|
|
|
{
|
|
|
|
auto arguments = function->arguments->children;
|
2017-06-10 09:04:31 +00:00
|
|
|
|
2018-06-20 08:09:09 +00:00
|
|
|
if (arguments.size() != 1 && arguments.size() != 2)
|
2019-08-19 12:27:51 +00:00
|
|
|
throw Exception("Table function '" + getName() + "' requires 'length' or 'offset, length'.", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH);
|
2017-06-10 09:04:31 +00:00
|
|
|
|
|
|
|
|
2018-06-20 08:09:09 +00:00
|
|
|
UInt64 offset = arguments.size() == 2 ? evaluateArgument(context, arguments[0]) : 0;
|
|
|
|
UInt64 length = arguments.size() == 2 ? evaluateArgument(context, arguments[1]) : evaluateArgument(context, arguments[0]);
|
2017-06-10 09:04:31 +00:00
|
|
|
|
2020-01-24 16:20:36 +00:00
|
|
|
context.checkAccess(AccessType::numbers);
|
|
|
|
|
2019-08-20 10:28:20 +00:00
|
|
|
auto res = StorageSystemNumbers::create(table_name, multithreaded, length, offset, false);
|
2018-06-20 08:09:09 +00:00
|
|
|
res->startup();
|
|
|
|
return res;
|
|
|
|
}
|
2019-08-19 12:27:51 +00:00
|
|
|
throw Exception("Table function '" + getName() + "' requires 'limit' or 'offset, limit'.", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH);
|
2017-06-10 09:04:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void registerTableFunctionNumbers(TableFunctionFactory & factory)
|
|
|
|
{
|
2019-08-19 12:27:51 +00:00
|
|
|
factory.registerFunction<TableFunctionNumbers<true>>();
|
|
|
|
factory.registerFunction<TableFunctionNumbers<false>>();
|
2017-06-10 09:04:31 +00:00
|
|
|
}
|
|
|
|
|
2019-08-19 12:27:51 +00:00
|
|
|
template <bool multithreaded>
|
|
|
|
UInt64 TableFunctionNumbers<multithreaded>::evaluateArgument(const Context & context, ASTPtr & argument) const
|
2018-06-20 08:09:09 +00:00
|
|
|
{
|
2019-03-15 16:14:13 +00:00
|
|
|
return evaluateConstantExpressionOrIdentifierAsLiteral(argument, context)->as<ASTLiteral &>().value.safeGet<UInt64>();
|
2018-06-20 08:09:09 +00:00
|
|
|
}
|
|
|
|
|
2017-06-10 09:04:31 +00:00
|
|
|
}
|