You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is on julia 0.5.2 and on the current julia 0.6 release candidate. I have a file named test3.jl with this content:
using CSV
file ="data.csv"# make sure some file like that exists
io =open(file, "r")
csv = CSV.Source(io, delim =';')
Data.close!(csv)
close(io)
quit()
When I execute this command line: julia --track-allocation=user .\test3.jl, I get a very long segfault output (multiple screens).
I also tried running the same code interactive, and in that case calling quit() throws an error at the end:
julia> quit()
ERROR: ReadOnlyMemoryError()
in quit() at .\initdefs.jl:23
CCing @quinnj, although I feel that no matter what the CSV.jl package is doing, this shouldn't segfault.
The text was updated successfully, but these errors were encountered:
This is on julia 0.5.2 and on the current julia 0.6 release candidate. I have a file named
test3.jl
with this content:When I execute this command line:
julia --track-allocation=user .\test3.jl
, I get a very long segfault output (multiple screens).I also tried running the same code interactive, and in that case calling
quit()
throws an error at the end:CCing @quinnj, although I feel that no matter what the CSV.jl package is doing, this shouldn't segfault.
The text was updated successfully, but these errors were encountered: