fix limit with offset

This commit is contained in:
CurtizJ 2019-08-23 14:11:50 +03:00
parent 659d3857ab
commit 811dab72a8

View File

@ -143,7 +143,7 @@ Block LimitBlockInputStream::readImpl()
}
}
if (start + length == rows)
if (length == rows)
return *ptr;
for (size_t i = 0; i < ptr->columns(); ++i)