2017-12-05 13:32:02 +00:00
|
|
|
#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";
|
2017-12-26 18:32:17 +00:00
|
|
|
std::string getName() const override
|
|
|
|
{
|
|
|
|
return name;
|
|
|
|
}
|
2017-12-05 13:32:02 +00:00
|
|
|
StoragePtr execute(const ASTPtr & ast_function, const Context & context) const override;
|
|
|
|
};
|
|
|
|
}
|