2020-03-10 14:54:22 +00:00
|
|
|
#include <TableFunctions/ITableFunction.h>
|
|
|
|
#include <TableFunctions/TableFunctionZeros.h>
|
|
|
|
#include <TableFunctions/TableFunctionFactory.h>
|
|
|
|
#include <Parsers/ASTFunction.h>
|
2022-06-23 20:04:06 +00:00
|
|
|
#include <Storages/checkAndGetLiteralArgument.h>
|
2020-03-10 14:54:22 +00:00
|
|
|
#include <Storages/System/StorageSystemZeros.h>
|
2020-10-14 12:19:29 +00:00
|
|
|
#include <DataTypes/DataTypesNumber.h>
|
2020-03-10 14:54:22 +00:00
|
|
|
#include <Interpreters/evaluateConstantExpression.h>
|
|
|
|
#include <Interpreters/Context.h>
|
|
|
|
#include "registerTableFunctions.h"
|
2020-03-10 13:14:49 +00:00
|
|
|
|
2020-03-10 14:54:22 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH;
|
|
|
|
}
|
|
|
|
|
2020-10-14 12:19:29 +00:00
|
|
|
|
|
|
|
template <bool multithreaded>
|
2021-04-10 23:33:54 +00:00
|
|
|
ColumnsDescription TableFunctionZeros<multithreaded>::getActualTableStructure(ContextPtr /*context*/) const
|
2020-10-14 12:19:29 +00:00
|
|
|
{
|
|
|
|
/// NOTE: https://bugs.llvm.org/show_bug.cgi?id=47418
|
|
|
|
return ColumnsDescription{{{"zero", std::make_shared<DataTypeUInt8>()}}};
|
|
|
|
}
|
|
|
|
|
2020-08-26 20:56:30 +00:00
|
|
|
template <bool multithreaded>
|
2021-04-10 23:33:54 +00:00
|
|
|
StoragePtr TableFunctionZeros<multithreaded>::executeImpl(const ASTPtr & ast_function, ContextPtr context, const std::string & table_name, ColumnsDescription /*cached_columns*/) const
|
2020-08-26 20:56:30 +00:00
|
|
|
{
|
2020-08-31 17:45:21 +00:00
|
|
|
if (const auto * function = ast_function->as<ASTFunction>())
|
|
|
|
{
|
|
|
|
auto arguments = function->arguments->children;
|
2020-08-26 20:56:30 +00:00
|
|
|
|
2020-08-31 17:45:21 +00:00
|
|
|
if (arguments.size() != 1)
|
|
|
|
throw Exception("Table function '" + getName() + "' requires 'length'.", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH);
|
2020-03-10 14:54:22 +00:00
|
|
|
|
|
|
|
|
2020-08-31 17:45:21 +00:00
|
|
|
UInt64 length = evaluateArgument(context, arguments[0]);
|
|
|
|
|
2022-04-19 20:47:29 +00:00
|
|
|
auto res = std::make_shared<StorageSystemZeros>(StorageID(getDatabaseName(), table_name), multithreaded, length);
|
2020-08-31 17:45:21 +00:00
|
|
|
res->startup();
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
throw Exception("Table function '" + getName() + "' requires 'limit'.", ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH);
|
2020-03-10 14:54:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void registerTableFunctionZeros(TableFunctionFactory & factory)
|
|
|
|
{
|
2022-11-03 11:31:07 +00:00
|
|
|
factory.registerFunction<TableFunctionZeros<true>>({.documentation = {R"(
|
2022-08-26 01:41:52 +00:00
|
|
|
Generates a stream of zeros (a table with one column 'zero' of type 'UInt8') of specified size.
|
|
|
|
|
|
|
|
This table function is used in performance tests, where you want to spend as little time as possible to data generation while testing some other parts of queries.
|
|
|
|
|
|
|
|
In contrast to the `zeros_mt`, this table function is using single thread for data generation.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
[example:1]
|
|
|
|
This query will test the speed of `randomPrintableASCII` function using single thread.
|
|
|
|
|
|
|
|
See also the `system.zeros` table.
|
|
|
|
)",
|
|
|
|
{{"1", "SELECT count() FROM zeros(100000000) WHERE NOT ignore(randomPrintableASCII(10))"}}
|
2022-11-03 11:31:07 +00:00
|
|
|
}});
|
2022-08-26 01:41:52 +00:00
|
|
|
|
2022-11-03 11:31:07 +00:00
|
|
|
factory.registerFunction<TableFunctionZeros<false>>({.documentation = {R"(
|
2022-08-26 01:41:52 +00:00
|
|
|
Generates a stream of zeros (a table with one column 'zero' of type 'UInt8') of specified size.
|
|
|
|
|
|
|
|
This table function is used in performance tests, where you want to spend as little time as possible to data generation while testing some other parts of queries.
|
|
|
|
|
|
|
|
In contrast to the `zeros`, this table function is using multiple threads for data generation, according to the `max_threads` setting.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
[example:1]
|
|
|
|
This query will test the speed of `randomPrintableASCII` function using multiple threads.
|
|
|
|
|
|
|
|
See also the `system.zeros` table.
|
|
|
|
)",
|
|
|
|
{{"1", "SELECT count() FROM zeros_mt(1000000000) WHERE NOT ignore(randomPrintableASCII(10))"}}
|
2022-11-03 11:31:07 +00:00
|
|
|
}});
|
2020-03-10 14:54:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <bool multithreaded>
|
2021-04-10 23:33:54 +00:00
|
|
|
UInt64 TableFunctionZeros<multithreaded>::evaluateArgument(ContextPtr context, ASTPtr & argument) const
|
2020-03-10 14:54:22 +00:00
|
|
|
{
|
2022-06-23 20:04:06 +00:00
|
|
|
return checkAndGetLiteralArgument<UInt64>(evaluateConstantExpressionOrIdentifierAsLiteral(argument, context), "length");
|
2020-03-10 14:54:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|