-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Fix problems with DataFrame WriteCsv when quotes are present in data #6340
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
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #6340 +/- ##
==========================================
+ Coverage 68.58% 68.59% +0.01%
==========================================
Files 1171 1171
Lines 247916 248036 +120
Branches 25742 25736 -6
==========================================
+ Hits 170022 170151 +129
+ Misses 71134 71125 -9
Partials 6760 6760
Flags with carried forward coverage won't be shown. Click here to find out more.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. Just one stray using statement that I think can be removed.
@eerhardt @michaelgsharp Looks like build is failing because the raw string literals are a "preview feature". Should we add |
This would be my preference. It is just to the test project, so it shouldn't affect anything else. |
Fixes #6238, continuation of #6303
There were no issues with Load, but Writing back to CSV didn't properly escape quotation marks within the data, preventing the CSV from being correctly loaded again.