mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
Vertical merge fix: don't forget to output last source_to_fully_copy [#CLICKHOUSE-3118]
This commit is contained in:
parent
13c8fe2400
commit
b10e9d1f18
@ -85,7 +85,7 @@ Block ColumnGathererStream::readImpl()
|
||||
if (sources.empty())
|
||||
init();
|
||||
|
||||
if (row_sources_buf.eof())
|
||||
if (!source_to_fully_copy && row_sources_buf.eof())
|
||||
return Block();
|
||||
|
||||
output_block = Block{column.cloneEmpty()};
|
||||
|
Loading…
Reference in New Issue
Block a user