Add write
method to JsonWriter
#1340
Labels
arrow
Changes to the arrow crate
enhancement
Any new improvement worthy of a entry in the changelog
good first issue
Good for newcomers
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
(This section helps Arrow developers understand the context and why for this feature, in addition to the what)
I'm looking to add
write_json
functionality inDataFusion
as part of apache/datafusion#1777. Right nowwrite_csv
andwrite_parquet
use awriter.write(batch)
approach for writing a stream of batches. The currentJsonWriter
only haswrite_batches
which takes a slice ofRecordBatch
es.Describe the solution you'd like
A clear and concise description of what you want to happen.
I would like to add a
write
method to the writer which takes only a singleRecordBatch
- similar to the other writers.Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: