xitongsys / parquet-go

pure golang library for reading/writing parquet file
Apache License 2.0
1.27k stars 293 forks source link

support string or []byte for JSON data writing #406

Closed deankarn closed 3 years ago

deankarn commented 3 years ago

I have a use case where the JSON is in []byte form.

This PR adds support for both string and []byte writing to the JSONWriter to avoid the extra allocation to a string.