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
CSV.read failed when CSV files contain multiple-line strings with multiple tasks.
Reproduction
Threads.nthreads() # 240using DataFrames
using CSV
n =4000# change to larger number if unable to reproduce
text ="123abc"# multiple-line string
a =DataFrame(id=1:n, text=fill(text, n))
CSV.write("test.csv", a)
b = CSV.read("test.csv", DataFrame) # Error# CSV.read("test.csv", DataFrame, ntasks=1) is OK
The text was updated successfully, but these errors were encountered:
CSV.read
failed when CSV files contain multiple-line strings with multiple tasks.Reproduction
The text was updated successfully, but these errors were encountered: