Bogumił Kamiński
Bogumił Kamiński
In a similar way how we do it in `tmapreduce`.
The issue is: ``` julia> x = view(["A", "B"], 1:2) 2-element view(::Vector{String}, 1:2) with eltype String: "A" "B" julia> y = Vector{String}(undef, 2) 2-element Vector{String}: #undef #undef julia> copyto!(x, y)...
Found in: https://github.com/JuliaData/DataFrames.jl/actions/runs/8635821381/job/23674443172 I can reproduce it by starting Julia with `julia --check-bounds=yes -t 4` and running the following code: ``` @testset "CategoricalArray thread safety" begin # These tests do...
Fixes https://github.com/JuliaData/Tables.jl/issues/354.