Closed dhawal1248 closed 3 years ago
I am observing crashes with v1.6.0 caused by nil rows, presumably the same bug.
@hstern you can add the dependency like go get github.com/xitongsys/parquet-go@8ed6152
. This way it will always use the code at commit 8ed6152
.
@xitongsys Would you mind releasing a new version? The current 1.6.0 version (which you get by default with go get) is already quite old compared to the progress here on master. Also the example code is not working out of the box with 1.6.
released v1.6.1
The latest release
v1.6.0
and the current master behave differently wrt to the attached code. The parquet file generated by releasev1.6.0
has some missing rows in the final parquet file. The parquet file generated by the current master code, looks fine and has all rows in the final file.I used the current master code using the
replace
directive in the project'sgo.mod
file. (replace github.com/xitongsys/parquet-go v1.6.0 => <path to lib code>
)The following code produces different parquet files.
When this code uses the latest release(v1.6.0), the parquet files don't have all rows(some of the rows are missing from the final parquet file). The file looks something like this :-
When it uses the current master, it works as expected and the file looks like :-
Can you please create a fresh release if this was a bug in
v1.6.0
which was later fixed? Thanks in advance :) @xitongsys