NonJoinedBlockInputStream generates duplicate records across block.

This patch fixes the iterator incrementation.
This commit is contained in:
Amos Bird 2018-01-06 00:12:35 +08:00 committed by alexey-milovidov
parent 694c6ed243
commit a3d2a4fe4d

View File

@ -1148,7 +1148,10 @@ private:
++rows_added;
if (rows_added == max_block_size)
{
++it;
break;
}
}
return rows_added;