mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
28 lines
708 B
C++
28 lines
708 B
C++
#pragma once
|
|
|
|
#include <TableFunctions/ITableFunction.h>
|
|
#include <Core/Types.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/* zeros(limit), zeros_mt(limit)
|
|
* - the same as SELECT zero FROM system.zeros LIMIT limit.
|
|
* 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;
|
|
};
|
|
|
|
|
|
}
|