2020-02-05 10:12:19 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Core/Names.h>
|
|
|
|
#include <Core/Block.h>
|
2021-04-10 23:33:54 +00:00
|
|
|
#include <Interpreters/Context_fwd.h>
|
2020-02-05 10:12:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
class IFunctionOverloadResolver;
|
|
|
|
using FunctionOverloadResolverPtr = std::shared_ptr<IFunctionOverloadResolver>;
|
|
|
|
|
2022-11-15 01:42:46 +00:00
|
|
|
class DataTypeArray;
|
|
|
|
class ColumnArray;
|
2022-11-21 10:03:46 +00:00
|
|
|
const DataTypeArray * getArrayJoinDataType(const DataTypePtr & type);
|
|
|
|
const ColumnArray * getArrayJoinColumn(const ColumnPtr & column);
|
2022-11-15 01:42:46 +00:00
|
|
|
|
2022-11-21 10:03:46 +00:00
|
|
|
/// If input array join column has map type, convert it to array type.
|
|
|
|
/// Otherwise do nothing.
|
|
|
|
ColumnWithTypeAndName convertArrayJoinColumn(const ColumnWithTypeAndName & src_col);
|
2022-11-15 01:42:46 +00:00
|
|
|
|
2020-08-11 12:03:18 +00:00
|
|
|
class ArrayJoinAction
|
2020-02-05 10:12:19 +00:00
|
|
|
{
|
2020-08-11 12:03:18 +00:00
|
|
|
public:
|
2020-02-05 10:12:19 +00:00
|
|
|
NameSet columns;
|
|
|
|
bool is_left = false;
|
|
|
|
bool is_unaligned = false;
|
|
|
|
|
|
|
|
/// For unaligned [LEFT] ARRAY JOIN
|
|
|
|
FunctionOverloadResolverPtr function_length;
|
|
|
|
FunctionOverloadResolverPtr function_greatest;
|
2022-11-15 01:42:46 +00:00
|
|
|
FunctionOverloadResolverPtr function_array_resize;
|
2020-02-05 10:12:19 +00:00
|
|
|
|
|
|
|
/// For LEFT ARRAY JOIN.
|
|
|
|
FunctionOverloadResolverPtr function_builder;
|
|
|
|
|
2021-04-10 23:33:54 +00:00
|
|
|
ArrayJoinAction(const NameSet & array_joined_columns_, bool array_join_is_left, ContextPtr context);
|
2020-09-10 18:36:51 +00:00
|
|
|
void prepare(ColumnsWithTypeAndName & sample) const;
|
2020-08-13 20:17:18 +00:00
|
|
|
void execute(Block & block);
|
2020-02-05 10:12:19 +00:00
|
|
|
};
|
|
|
|
|
2020-08-11 12:03:18 +00:00
|
|
|
using ArrayJoinActionPtr = std::shared_ptr<ArrayJoinAction>;
|
|
|
|
|
2020-02-05 10:12:19 +00:00
|
|
|
}
|