mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
72b1339656
This reverts commit c65d1e5c70
.
32 lines
975 B
C++
32 lines
975 B
C++
#pragma once
|
|
|
|
#include <TableFunctions/ITableFunction.h>
|
|
#include <common/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; }
|
|
bool hasStaticStructure() const override { return true; }
|
|
private:
|
|
StoragePtr executeImpl(const ASTPtr & ast_function, const Context & context, const std::string & table_name, ColumnsDescription cached_columns) const override;
|
|
const char * getStorageTypeName() const override { return "SystemZeros"; }
|
|
|
|
UInt64 evaluateArgument(const Context & context, ASTPtr & argument) const;
|
|
|
|
ColumnsDescription getActualTableStructure(const Context & context) const override;
|
|
};
|
|
|
|
|
|
}
|