We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
using CSV d = [(x="a"^(2^22),y="b"^(2^22),)] CSV.write("tmp.csv", d) |> CSV.File |> display """ output: 1-element CSV.File: CSV.Row: (x = missing, y = missing, z = missing) """ d = [(x="a"^(2^20),y="b"^(2^20),)] CSV.write("tmp.csv", d) |> CSV.File |> display """ output: 1-element CSV.File: CSV.Row: (x = missing, y = missing, z = missing) """
The text was updated successfully, but these errors were encountered:
Yes, i believe 2^20 is the limit for the longest string we can parse in an individual cell
Tracked here: #935
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: