2019-09-18 12:46:57 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Interpreters/IJoin.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
struct ColumnWithTypeAndName;
|
|
|
|
class Block;
|
|
|
|
class IColumn;
|
|
|
|
using ColumnRawPtrs = std::vector<const IColumn *>;
|
|
|
|
|
|
|
|
namespace JoinCommon
|
|
|
|
{
|
|
|
|
|
|
|
|
void convertColumnToNullable(ColumnWithTypeAndName & column);
|
|
|
|
void convertColumnsToNullable(Block & block, size_t starting_pos = 0);
|
2019-10-29 19:39:42 +00:00
|
|
|
void removeColumnNullability(ColumnWithTypeAndName & column);
|
2019-12-17 15:02:42 +00:00
|
|
|
Columns materializeColumns(const Block & block, const Names & names);
|
|
|
|
ColumnRawPtrs materializeColumnsInplace(Block & block, const Names & names);
|
|
|
|
ColumnRawPtrs getRawPointers(const Columns & columns);
|
2019-09-18 12:46:57 +00:00
|
|
|
void removeLowCardinalityInplace(Block & block);
|
|
|
|
|
|
|
|
/// Split key and other columns by keys name list
|
|
|
|
ColumnRawPtrs extractKeysForJoin(const Names & key_names_right, const Block & right_sample_block,
|
|
|
|
Block & sample_block_with_keys, Block & sample_block_with_columns_to_add);
|
|
|
|
|
|
|
|
/// Throw an exception if blocks have different types of key columns. Compare up to Nullability.
|
|
|
|
void checkTypesOfKeys(const Block & block_left, const Names & key_names_left, const Block & block_right, const Names & key_names_right);
|
|
|
|
|
|
|
|
void createMissedColumns(Block & block);
|
2019-09-19 14:53:03 +00:00
|
|
|
void joinTotals(const Block & totals, const Block & columns_to_add, const Names & key_names_right, Block & block);
|
2019-09-18 12:46:57 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|