mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
fix crash
This commit is contained in:
parent
ae5ed098f4
commit
0e49a9ed4d
@ -327,8 +327,12 @@ struct ExpressionActionsChain
|
||||
|
||||
ExpressionActionsPtr getLastActions(bool allow_empty = false)
|
||||
{
|
||||
if (steps.empty() && !allow_empty)
|
||||
if (steps.empty())
|
||||
{
|
||||
if (allow_empty)
|
||||
return {};
|
||||
throw Exception("Empty ExpressionActionsChain", ErrorCodes::LOGICAL_ERROR);
|
||||
}
|
||||
|
||||
return steps.back().actions;
|
||||
}
|
||||
|
@ -1161,8 +1161,7 @@ ExpressionAnalysisResult::ExpressionAnalysisResult(
|
||||
{
|
||||
/// You may find it strange but we support read_in_order for HashJoin and do not support for MergeJoin.
|
||||
auto join_algo = join->getTableJoinAlgo();
|
||||
const auto * hash_join = typeid_cast<HashJoin *>(join_algo.get());
|
||||
join_allow_read_in_order = hash_join && !join_algo->hasStreamWithNonJoinedRows();
|
||||
join_allow_read_in_order = typeid_cast<HashJoin *>(join_algo.get()) && !join_algo->hasStreamWithNonJoinedRows();
|
||||
}
|
||||
|
||||
optimize_read_in_order =
|
||||
|
Loading…
Reference in New Issue
Block a user