2020-03-10 14:54:22 +00:00
|
|
|
#pragma once
|
2020-03-10 13:14:49 +00:00
|
|
|
|
2020-03-10 14:54:22 +00:00
|
|
|
#include <TableFunctions/ITableFunction.h>
|
|
|
|
#include <Core/Types.h>
|
2020-03-10 13:14:49 +00:00
|
|
|
|
|
|
|
|
2020-03-10 14:54:22 +00:00
|
|
|
namespace DB
|
2020-03-10 13:14:49 +00:00
|
|
|
{
|
|
|
|
|
2020-03-10 14:54:22 +00:00
|
|
|
/* zeros(limit), zeros_mt(limit)
|
2020-03-10 18:17:16 +00:00
|
|
|
* - the same as SELECT zero FROM system.zeros LIMIT limit.
|
2020-03-10 14:54:22 +00:00
|
|
|
* Used for testing purposes, as a simple example of table function.
|
|
|
|
*/
|
|
|
|
template <bool multithreaded>
|
|
|
|
class TableFunctionZeros : public ITableFunction
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static constexpr auto name = multithreaded ? "zeros_mt" : "zeros";
|
|
|
|
std::string getName() const override { return name; }
|
|
|
|
private:
|
|
|
|
StoragePtr executeImpl(const ASTPtr & ast_function, const Context & context, const std::string & table_name) const override;
|
|
|
|
|
|
|
|
UInt64 evaluateArgument(const Context & context, ASTPtr & argument) const;
|
2020-03-10 13:14:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2020-03-10 14:54:22 +00:00
|
|
|
}
|