mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
21 lines
495 B
C++
21 lines
495 B
C++
#pragma once
|
|
|
|
#include <TableFunctions/ITableFunction.h>
|
|
#include <Interpreters/Context.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
/* input(structure) - allows to make INSERT SELECT from incoming stream of data
|
|
*/
|
|
class TableFunctionInput : public ITableFunction
|
|
{
|
|
public:
|
|
static constexpr auto name = "input";
|
|
std::string getName() const override { return name; }
|
|
|
|
private:
|
|
StoragePtr executeImpl(const ASTPtr & ast_function, const Context & context, const std::string & table_name) const override;
|
|
};
|
|
}
|