-
Notifications
You must be signed in to change notification settings - Fork 50
test/sort.jl broken on current Julia master #208
Comments
…ide base/sparse and base/linalg), apart from the no-op fallback for `AbstractArray`s in abstractarray.jl.
If the best solution to this is to |
Someone else surely would know better than I would (maybe @andreasnoack? he knows everything) but I'm not sure what we could do in the short term on our end to accomodate that change. |
The reasoning behind JuliaLang/julia#17079 was that |
Actually, the fact that, for some That said, the simplest solution for this particular issue might be adding specialized methods to Or, even simpler, disallow cat'ing EDIT: I had completely missed JuliaLang/julia#17564... |
This is annoying. I think this shows that DataArrays are fundamentally broken as they don't respect the element type they declare. OTOH breaking DataArrays in Julia 0.5 would be a serious issue since the replacement isn't completely ready yet. So either we're able to override all |
JuliaLang/julia@a4e3cd2 Has been reverted so this is not an issue anymore. I'm wondering if the element type of a |
Since JuliaLang/julia@a4e3cd2,
typed_vcat
(called fromvcat
) explicitly converts its arguments toArray
s. This breaksisequal(sort(da), [DataArray(sort(dropna(da))); DataArray(T, nna)])
since the[...; ...]
tries to putNAtype
s into anArray{Float64,1}
.The text was updated successfully, but these errors were encountered: