Moelf opened a new issue, #534:
URL: https://github.com/apache/arrow-julia/issues/534

   ```julia
   flist1 = filter(contains("physics_TLA"), 
readdir("/data/jiling/TLA/julia_arrows/"; join=true))
   flist2 = filter(contains("mRp20"), readdir("/data/jiling/TLA/julia_arrows/"; 
join=true))
   
   Arrow.Table(flist1).proc |> unique
   # 1-element Vector{Bool}:
   # 0
   
   Arrow.Table(flist2).proc |> unique
   # 1-element Vector{Bool}:
   # 1
   
   length(Arrow.Table([flist1;]).proc), length(Arrow.Table([flist2;]).proc)
   # (3000521, 10077)
   
   length(Arrow.Table([flist1; flist2]).proc)
   # 3010598
   
   Arrow.Table([flist1; flist2]).proc |> unique
   #1-element Vector{Bool}:
   # 1
   Arrow.Table([flist2; flist1]).proc |> unique
   #1-element Vector{Bool}:
   # 0


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to