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
Exporting invalid CSV makes it hard to roundtrip import/exports.
Small repro:
dolt init
dolt sql <<EOFcreate table ab (a int primary key, b varbinary(255));insert into ab values (1, 'line\nbreak'), (2,'sorry\ncsv');EOF
dolt table export ab ab.csv
$ cat ab.csv
a,b
1,"line
break"
2,"sorry
csv"
The text was updated successfully, but these errors were encountered:
Exporting invalid CSV makes it hard to roundtrip import/exports.
Small repro:
The text was updated successfully, but these errors were encountered: