ClickHouse/dbms/include/DB/Dictionaries/MySQLDictionarySource.h

62 lines
1.6 KiB
C++
Raw Normal View History

#pragma once
#include <DB/Dictionaries/IDictionarySource.h>
#include <DB/Dictionaries/MySQLBlockInputStream.h>
2016-04-10 02:47:29 +00:00
#include <DB/Dictionaries/ExternalQueryBuilder.h>
2016-12-08 02:49:04 +00:00
#include <DB/Dictionaries/DictionaryStructure.h>
2015-10-05 00:33:43 +00:00
#include <ext/range.hpp>
#include <mysqlxx/Pool.h>
#include <Poco/Util/AbstractConfiguration.h>
namespace DB
{
2016-01-12 02:21:15 +00:00
/// Allows loading dictionaries from a MySQL database
class MySQLDictionarySource final : public IDictionarySource
{
public:
2016-04-10 02:47:29 +00:00
MySQLDictionarySource(const DictionaryStructure & dict_struct_,
const Poco::Util::AbstractConfiguration & config, const std::string & config_prefix,
const Block & sample_block);
/// copy-constructor is provided in order to support cloneability
MySQLDictionarySource(const MySQLDictionarySource & other);
2016-12-08 02:49:04 +00:00
BlockInputStreamPtr loadAll() override;
BlockInputStreamPtr loadIds(const std::vector<UInt64> & ids) override;
BlockInputStreamPtr loadKeys(
const ConstColumnPlainPtrs & key_columns, const std::vector<std::size_t> & requested_rows) override;
bool isModified() const override;
bool supportsSelectiveLoad() const override;
DictionarySourcePtr clone() const override;
std::string toString() const override;
private:
Logger * log = &Logger::get("MySQLDictionarySource");
static std::string quoteForLike(const std::string s);
LocalDateTime getLastModification() const;
const DictionaryStructure dict_struct;
const std::string db;
const std::string table;
const std::string where;
const bool dont_check_update_time;
Block sample_block;
mutable mysqlxx::PoolWithFailover pool;
2016-04-10 02:47:29 +00:00
ExternalQueryBuilder query_builder;
const std::string load_all_query;
LocalDateTime last_modification;
};
}