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
julia>using JLD
julia> x = [rand(2,2) for _ in1:100];
julia>@save"test.jld" x
julia>jldopen("test.jld", "r+") do f
delete!(f, "x")
endfalse
julia>jldopen("test.jld", "r") do f
names(f["_refs"])
end100-element Array{String,1}:"00000001""00000002""00000003""00000004""00000005""00000006""00000007""00000008""00000009""00000010""00000011""00000012"⋮"00000090""00000091""00000092""00000093""00000094""00000095""00000096""00000097""00000098""00000099""00000100"
MWE:
Looking at https://github.com/JuliaIO/JLD.jl/blob/master/src/JLD.jl#L311 it's obvious why the references haven't been deleted. The references simply aren't in
refspath = "/_refs/x"
.The text was updated successfully, but these errors were encountered: