Skip to content

Commit

Permalink
critical bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aloneguid committed Dec 31, 2023
1 parent 0f46d34 commit fbd4a53
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 'Build'

env:
VERSION: 4.18.0
VERSION: 4.18.1
ASM_VERSION: 4.0.0
DOC_ARTIFACT: webHelp-all.zip

Expand Down
4 changes: 4 additions & 0 deletions docs/release-history.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.18.1

Critical bug fix: reverting #423 as it introducing some side effects that prevent from generating correct files.

## 4.18.0

This is the next stability improvements release, and a big thanks to everyone who contributed! Without you this project would not be possible.
Expand Down
2 changes: 1 addition & 1 deletion src/Parquet/File/DataColumnWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ private async Task CompressAndWriteAsync(
ph.Write(new Meta.Proto.ThriftCompactProtocolWriter(headerMs));
int headerSize = (int)headerMs.Length;
headerMs.Position = 0;
// there used to be a flush here, but removed in #432 due to excessive flushing on expensive streams
_stream.Flush();

await headerMs.CopyToAsync(_stream);

Expand Down

0 comments on commit fbd4a53

Please sign in to comment.