mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
dbms: development [#CONV-2944].
This commit is contained in:
parent
075f636bb3
commit
00f23ee493
@ -36,6 +36,14 @@ protected:
|
||||
++current;
|
||||
if (buffers.end() == current)
|
||||
return false;
|
||||
|
||||
/// Пропускаем закончившиеся буферы; если буфер не закончился, но курсор на конце, то прочитаем следующую порцию данных.
|
||||
while ((*current)->eof())
|
||||
{
|
||||
++current;
|
||||
if (buffers.end() == current)
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
working_buffer = (*current)->buffer();
|
||||
|
Loading…
Reference in New Issue
Block a user