ClickHouse/src/TableFunctions/TableFunctionMySQL.h

39 lines
1.1 KiB
C++
Raw Normal View History

#pragma once
2021-10-27 23:10:39 +00:00
#include "config_core.h"
#if USE_MYSQL
#include <TableFunctions/ITableFunction.h>
2021-09-03 11:16:32 +00:00
#include <Storages/ExternalDataSourceConfiguration.h>
#include <mysqlxx/Pool.h>
namespace DB
{
2017-12-26 21:34:06 +00:00
/* 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, ContextPtr context, const std::string & table_name, ColumnsDescription cached_columns) const override;
const char * getStorageTypeName() const override { return "MySQL"; }
ColumnsDescription getActualTableStructure(ContextPtr context) const override;
void parseArguments(const ASTPtr & ast_function, ContextPtr context) override;
mutable std::optional<mysqlxx::PoolWithFailover> pool;
2021-09-03 11:16:32 +00:00
std::optional<StorageMySQLConfiguration> configuration;
};
2017-12-26 21:34:06 +00:00
}
#endif