Skip to content
New issue

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

can not read the csv with large cells written by itself #1115

Closed
ctarn opened this issue Nov 21, 2023 · 1 comment
Closed

can not read the csv with large cells written by itself #1115

ctarn opened this issue Nov 21, 2023 · 1 comment

Comments

@ctarn
Copy link

ctarn commented Nov 21, 2023

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)
"""
@nickrobinson251
Copy link
Collaborator

Yes, i believe 2^20 is the limit for the longest string we can parse in an individual cell

Tracked here: #935

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants