mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-11 08:52:06 +00:00
55 lines
1.6 KiB
C++
55 lines
1.6 KiB
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
#include <Core/Names.h>
|
|
#include <Columns/IColumn.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Block;
|
|
struct ExtraBlock;
|
|
using ExtraBlockPtr = std::shared_ptr<ExtraBlock>;
|
|
|
|
class TableJoin;
|
|
class NotJoinedBlocks;
|
|
|
|
class IJoin
|
|
{
|
|
public:
|
|
virtual ~IJoin() = default;
|
|
|
|
virtual const TableJoin & getTableJoin() const = 0;
|
|
|
|
/// Add block of data from right hand of JOIN.
|
|
/// @returns false, if some limit was exceeded and you should not insert more data.
|
|
virtual bool addJoinedBlock(const Block & block, bool check_limits = true) = 0; /// NOLINT
|
|
|
|
virtual void checkTypesOfKeys(const Block & block) const = 0;
|
|
|
|
/// Join the block with data from left hand of JOIN to the right hand data (that was previously built by calls to addJoinedBlock).
|
|
/// Could be called from different threads in parallel.
|
|
virtual void joinBlock(Block & block, std::shared_ptr<ExtraBlock> & not_processed) = 0;
|
|
|
|
/// Set/Get totals for right table
|
|
virtual void setTotals(const Block & block) = 0;
|
|
virtual const Block & getTotals() const = 0;
|
|
|
|
virtual size_t getTotalRowCount() const = 0;
|
|
virtual size_t getTotalByteCount() const = 0;
|
|
virtual bool alwaysReturnsEmptySet() const = 0;
|
|
|
|
/// StorageJoin/Dictionary is already filled. No need to call addJoinedBlock.
|
|
/// Different query plan is used for such joins.
|
|
virtual bool isFilled() const { return false; }
|
|
|
|
virtual std::shared_ptr<NotJoinedBlocks>
|
|
getNonJoinedBlocks(const Block & left_sample_block, const Block & result_sample_block, UInt64 max_block_size) const = 0;
|
|
};
|
|
|
|
using JoinPtr = std::shared_ptr<IJoin>;
|
|
|
|
}
|