aloneguid / parquet-dotnet

Fully managed Apache Parquet implementation
https://aloneguid.github.io/parquet-dotnet/
MIT License
542 stars 140 forks source link

fix: attempt to fix issues where loop will read past the end of a block #487

Closed alex-harper closed 2 months ago

alex-harper commented 3 months ago

This PR is a fix for https://github.com/aloneguid/parquet-dotnet/issues/486

The delta binary packed encoder has a few bugs where it will read past the end of a block and fill the destination buffer with incorrect output.

This PR terminates the various loops once the final value for a block has been read.