ClickHouse/src/Dictionaries/DictionarySourceHelpers.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.5 KiB
C++
Raw Normal View History

2017-05-25 19:21:57 +00:00
#pragma once
#include <vector>
2021-10-02 07:13:14 +00:00
#include <base/types.h>
#include <Poco/Util/AbstractConfiguration.h>
#include <Processors/ISimpleTransform.h>
#include <Columns/IColumn.h>
#include <Core/Block.h>
#include <Interpreters/Context_fwd.h>
2021-05-28 18:17:16 +00:00
2017-05-25 19:21:57 +00:00
namespace DB
{
2021-02-28 21:04:05 +00:00
2017-05-25 19:21:57 +00:00
struct DictionaryStructure;
2021-08-12 15:16:55 +00:00
class SettingsChanges;
2017-05-25 19:21:57 +00:00
/// For simple key
2021-01-27 13:23:02 +00:00
Block blockForIds(
const DictionaryStructure & dict_struct,
const std::vector<UInt64> & ids);
2017-05-25 19:21:57 +00:00
/// For composite key
Block blockForKeys(
const DictionaryStructure & dict_struct,
const Columns & key_columns,
const std::vector<size_t> & requested_rows);
2017-05-25 19:21:57 +00:00
/// Used for applying settings to copied context in some register[...]Source functions
2021-08-12 15:16:55 +00:00
SettingsChanges readSettingsFromDictionaryConfig(const Poco::Util::AbstractConfiguration & config, const std::string & config_prefix);
ContextMutablePtr copyContextAndApplySettingsFromDictionaryConfig(const ContextPtr & context, const Poco::Util::AbstractConfiguration & config, const std::string & config_prefix);
2021-02-28 21:04:05 +00:00
/** A stream, adds additional columns to each block that it will read from inner stream.
*
* block_to_add rows size must be equal to final sum rows size of all inner stream blocks.
*/
class TransformWithAdditionalColumns final : public ISimpleTransform
2021-02-28 21:04:05 +00:00
{
public:
TransformWithAdditionalColumns(Block block_to_add_, const Block & header);
2021-02-28 21:04:05 +00:00
void transform(Chunk & chunk) override;
2021-02-28 21:04:05 +00:00
String getName() const override;
private:
Block block_to_add;
size_t current_range_index = 0;
};
}