bkamins opened a new issue, #354:
URL: https://github.com/apache/arrow-julia/issues/354
Maybe we could consider allowing creation of a new Arrow file with
`Arrow.append`? Currently it fails, so one needs to write:
```
for i in 1:10
if isfile("out.arrow")
Arrow.append("out.arrow", DataFrame(i=i))
else
Arrow.write("out.arrow", DataFrame(i=i))
end
end
```
which could be just:
```
for i in 1:10
Arrow.append("out.arrow", DataFrame(i=i))
end
```
But maybe there is a reason for the current design?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]