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
The following code gives different behavior on JLD2 0.5.5 vs 0.5.6:
using JLD2, DataFrames, Dates
df =DataFrame(date=Date(2014),boolcol=rand([truefalse],100),randcol=rand(100))
allowmissing!(df)
df[rand(1:100,10),:boolcol] .=missing
df[rand(1:100,10),:randcol] .=missingjldopen("test.jld2","w") do f
for n innames(df)
f[n] = df[!,n]
endend@showeltype(df.boolcol)
df2 =DataFrame()
jldopen("test.jld2","r") do f
for k inkeys(f)
df2[!,k] = f[k]
endend@showeltype(df2.boolcol)
The following code gives different behavior on JLD2 0.5.5 vs 0.5.6:
On 0.5.5 this gives:
while on 0.5.6 it gives:
So it seems some internal JLD2 type is now getting leaked into the constructed values.
The text was updated successfully, but these errors were encountered: