mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 09:22:05 +00:00
58 lines
1.6 KiB
C++
58 lines
1.6 KiB
C++
#pragma once
|
|
|
|
#include <Core/Block.h>
|
|
#include <base/BorrowedObjectPool.h>
|
|
|
|
#include "DictionaryStructure.h"
|
|
#include "IDictionarySource.h"
|
|
#include <Storages/RedisCommon.h>
|
|
|
|
namespace DB
|
|
{
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int NOT_IMPLEMENTED;
|
|
}
|
|
|
|
class RedisDictionarySource final : public IDictionarySource
|
|
{
|
|
public:
|
|
RedisDictionarySource(
|
|
const DictionaryStructure & dict_struct_,
|
|
const RedisConfiguration & configuration_,
|
|
const Block & sample_block_);
|
|
|
|
RedisDictionarySource(const RedisDictionarySource & other);
|
|
|
|
~RedisDictionarySource() override;
|
|
|
|
QueryPipeline loadAll() override;
|
|
|
|
QueryPipeline loadUpdatedAll() override
|
|
{
|
|
throw Exception(ErrorCodes::NOT_IMPLEMENTED, "Method loadUpdatedAll is unsupported for RedisDictionarySource");
|
|
}
|
|
|
|
bool supportsSelectiveLoad() const override { return true; }
|
|
|
|
QueryPipeline loadIds(const std::vector<UInt64> & ids) override;
|
|
|
|
QueryPipeline loadKeys(const Columns & key_columns, const std::vector<size_t> & requested_rows) override;
|
|
|
|
bool isModified() const override { return true; }
|
|
|
|
bool hasUpdateField() const override { return false; }
|
|
|
|
DictionarySourcePtr clone() const override { return std::make_shared<RedisDictionarySource>(*this); }
|
|
|
|
std::string toString() const override;
|
|
|
|
private:
|
|
const DictionaryStructure dict_struct;
|
|
const RedisConfiguration configuration;
|
|
|
|
RedisPoolPtr pool;
|
|
Block sample_block;
|
|
};
|
|
}
|