apache / arrow-julia

Official Julia implementation of Apache Arrow
https://arrow.apache.org/julia/
Other
284 stars 59 forks source link

Add support for FileIO #507

Open Beforerr opened 5 months ago

Beforerr commented 5 months ago

It is registered in FileIO however neither load nor fileio_load is defined. Not sure if the following simple code is the correct way to do it.

fileio_load(file) = Arrow.Table(file.filename)
Moelf commented 5 months ago

It kinda is but it may also blow up user's RAM if the file is compressed and big

Beforerr commented 5 months ago

Do we intend to support FileIO? If so I may add the interface and improve upon this