mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 17:41:59 +00:00
Fixed code #2272
This commit is contained in:
parent
daed1ea0dc
commit
71814a33d5
@ -286,7 +286,8 @@ void ExpressionAction::prepare(Block & sample_block)
|
||||
}
|
||||
}
|
||||
|
||||
size_t ExpressionAction::getInputRowsCount(Block & block, std::unordered_map<std::string, size_t> & input_rows_counts) const {
|
||||
size_t ExpressionAction::getInputRowsCount(Block & block, std::unordered_map<std::string, size_t> & input_rows_counts) const
|
||||
{
|
||||
auto it = input_rows_counts.find(row_projection_column);
|
||||
size_t projection_space_dimension;
|
||||
if (it == input_rows_counts.end())
|
||||
@ -312,6 +313,7 @@ size_t ExpressionAction::getInputRowsCount(Block & block, std::unordered_map<std
|
||||
{
|
||||
parent_space_dimension = block.getByName(row_projection_column).column->size();
|
||||
}
|
||||
|
||||
return is_row_projection_complementary ? parent_space_dimension - projection_space_dimension : projection_space_dimension;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user