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
I have a branch of CategoricalArrays here where a complex call to Base.return_types returns Array{String, 1} when called immediately after loading the package, but Union{Array{_,1} where _, NullableArrays.NullableArray{_,1} where _} when called after running lots of tests. If Base.return_types is called immediately, then it succeeds later, even after running the tests.
I couldn't find a simple reproducer for now, but if you checkout that branch you can reproduce it easily:
using CategoricalArrays
# Uncomment to trigger bug (the tests will fail)# include("test/recode.jl")
Base.return_types(recode, Tuple{Vector{Int}, Void, Pair{Int, String}, Pair{UnitRange{Int}, String}, Pair{Vector{Int}, String}, Pair{UnitRange{Int}, String}})
The text was updated successfully, but these errors were encountered:
I have a branch of CategoricalArrays here where a complex call to
Base.return_types
returnsArray{String, 1}
when called immediately after loading the package, butUnion{Array{_,1} where _, NullableArrays.NullableArray{_,1} where _}
when called after running lots of tests. IfBase.return_types
is called immediately, then it succeeds later, even after running the tests.I couldn't find a simple reproducer for now, but if you checkout that branch you can reproduce it easily:
The text was updated successfully, but these errors were encountered: