We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Arrow.write
IOStream
open(filename, "w")
Context: https://discourse.julialang.org/t/cannot-read-file-written-by-arrow-jl-in-python/97889/2
As mentioned in one of the answers, the file that results from:
open(filename, "w") do io Arrow.write(io, table) end
does not include the magic "ARROW1" in the start/end, and there may be other problems.
It does work with Arrow.write(filename, table), though (filename being the path to the file).
Arrow.write(filename, table)
filename
The text was updated successfully, but these errors were encountered:
Closing: I just found that it is solved by using the keyword arg file=true, as documented. Sorry for the confusion.
file=true
Sorry, something went wrong.
No branches or pull requests
Context:
https://discourse.julialang.org/t/cannot-read-file-written-by-arrow-jl-in-python/97889/2
As mentioned in one of the answers, the file that results from:
does not include the magic "ARROW1" in the start/end, and there may be other problems.
It does work with
Arrow.write(filename, table)
, though (filename
being the path to the file).The text was updated successfully, but these errors were encountered: