Remove check

This commit is contained in:
FawnD2 2020-05-04 16:26:20 +03:00
parent 17450811d4
commit a044766d58

View File

@ -41,7 +41,7 @@ Chunk ParquetBlockInputFormat::generate()
Chunk res;
const Block & header = getPort().getHeader();
if (in.eof() || row_group_current >= row_group_total)
if (row_group_current >= row_group_total)
return res;
std::shared_ptr<arrow::Table> table;