ClickHouse/dbms/TableFunctions/TableFunctionMySQL.h
Ivan 97f2a2213e
Move all folders inside /dbms one level up (#9974)
* Move some code outside dbms/src folder
* Fix paths
2020-04-02 02:51:21 +03:00

26 lines
620 B
C++

#pragma once
#include <TableFunctions/ITableFunction.h>
namespace DB
{
/* mysql ('host:port', database, table, user, password) - creates a temporary StorageMySQL.
* The structure of the table is taken from the mysql query DESCRIBE table.
* If there is no such table, an exception is thrown.
*/
class TableFunctionMySQL : public ITableFunction
{
public:
static constexpr auto name = "mysql";
std::string getName() const override
{
return name;
}
private:
StoragePtr executeImpl(const ASTPtr & ast_function, const Context & context, const std::string & table_name) const override;
};
}