Can't load a JLD file saved with HDF5.jl ≤ v"0.2.26" in later versions if it contains Vector{Vector{T}}
objects
#123
Labels
Vector{Vector{T}}
objects
#123
I have files which I cannot load unless I downgrade HDF5 to
v"0.2.26"
.Steps to reproduce:
v"0.2.26"
:Pkg.rm("HDF5"); Pkg.add("HDF5", v"0.2.26", v"0.2.27")
Vector{Vector{T}}
type:a=Vector{Int}[[1,2,3]]; @save "tst.jld" a
v"0.2.27"
or later:Pkg.rm("HDF5"); Pkg.add("HDF5")
@load "tst.jld"
ouput:
Everything works if keeping the same version of HDF5. Looks like some backwards incompatible change has been introduced in
v"0.2.27"
.The text was updated successfully, but these errors were encountered: