ClickHouse/dbms/src/TableFunctions/TableFunctionMySQL.h
2017-12-27 00:34:06 +03:00

25 lines
575 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;
}
StoragePtr execute(const ASTPtr & ast_function, const Context & context) const override;
};
}