Skip to content

Commit

Permalink
minor change for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
jackdelv committed Sep 14, 2023
1 parent 23a6524 commit 6352a26
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugins/parquet/parquetembed.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1884,7 +1884,8 @@ void ParquetDatasetBinder::executeAll()
}
}

if (--i % row_size != 0)
i--;
if (i % row_size != 0)
{
d_parquet->record_batch()->resize(i % row_size);
writeRecordBatch();
Expand Down

0 comments on commit 6352a26

Please sign in to comment.