2017-12-05 13:32:02 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-06-24 11:17:15 +00:00
|
|
|
#include "config_core.h"
|
2017-12-29 15:48:20 +00:00
|
|
|
#if USE_MYSQL
|
|
|
|
|
2017-12-27 21:45:05 +00:00
|
|
|
#include <ext/shared_ptr_helper.h>
|
|
|
|
|
2017-12-05 13:32:02 +00:00
|
|
|
#include <Storages/IStorage.h>
|
|
|
|
#include <mysqlxx/Pool.h>
|
|
|
|
|
2017-12-13 16:46:57 +00:00
|
|
|
|
2017-12-05 13:32:02 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2017-12-26 21:34:06 +00:00
|
|
|
/** Implements storage in the MySQL database.
|
|
|
|
* Use ENGINE = mysql(host_port, database_name, table_name, user_name, password)
|
|
|
|
* Read only.
|
|
|
|
*/
|
2017-12-27 21:45:05 +00:00
|
|
|
class StorageMySQL : public ext::shared_ptr_helper<StorageMySQL>, public IStorage
|
2017-12-05 13:32:02 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-12-26 21:34:06 +00:00
|
|
|
StorageMySQL(
|
|
|
|
const std::string & name,
|
2017-12-28 04:28:05 +00:00
|
|
|
mysqlxx::Pool && pool,
|
2017-12-26 21:34:06 +00:00
|
|
|
const std::string & remote_database_name,
|
|
|
|
const std::string & remote_table_name,
|
2018-05-14 11:00:22 +00:00
|
|
|
const bool replace_query,
|
2018-05-13 02:34:49 +00:00
|
|
|
const std::string & on_duplicate_clause,
|
2018-05-11 04:15:22 +00:00
|
|
|
const ColumnsDescription & columns,
|
|
|
|
const Context & context);
|
2017-12-05 13:32:02 +00:00
|
|
|
|
2017-12-26 21:34:06 +00:00
|
|
|
std::string getName() const override { return "MySQL"; }
|
|
|
|
std::string getTableName() const override { return name; }
|
2017-12-05 13:32:02 +00:00
|
|
|
|
2017-12-26 21:34:06 +00:00
|
|
|
BlockInputStreams read(
|
|
|
|
const Names & column_names,
|
2017-12-05 13:32:02 +00:00
|
|
|
const SelectQueryInfo & query_info,
|
|
|
|
const Context & context,
|
2018-04-19 14:47:09 +00:00
|
|
|
QueryProcessingStage::Enum processed_stage,
|
2019-02-18 23:38:44 +00:00
|
|
|
size_t max_block_size,
|
2017-12-05 13:32:02 +00:00
|
|
|
unsigned num_streams) override;
|
|
|
|
|
2019-02-27 18:26:24 +00:00
|
|
|
BlockOutputStreamPtr write(const ASTPtr & query, const Context & context) override;
|
2018-05-10 09:23:38 +00:00
|
|
|
|
2017-12-05 13:32:02 +00:00
|
|
|
private:
|
2018-05-11 04:15:22 +00:00
|
|
|
friend class StorageMySQLBlockOutputStream;
|
2017-12-26 21:34:06 +00:00
|
|
|
std::string name;
|
|
|
|
|
|
|
|
std::string remote_database_name;
|
|
|
|
std::string remote_table_name;
|
2018-05-13 02:34:49 +00:00
|
|
|
bool replace_query;
|
|
|
|
std::string on_duplicate_clause;
|
2017-12-26 21:34:06 +00:00
|
|
|
|
2018-01-25 14:42:39 +00:00
|
|
|
|
2017-12-05 13:32:02 +00:00
|
|
|
mysqlxx::Pool pool;
|
2019-01-04 12:10:00 +00:00
|
|
|
Context global_context;
|
2017-12-05 13:32:02 +00:00
|
|
|
};
|
2017-12-26 21:34:06 +00:00
|
|
|
|
2017-12-05 13:32:02 +00:00
|
|
|
}
|
2017-12-29 15:48:20 +00:00
|
|
|
|
|
|
|
#endif
|