-
-
Notifications
You must be signed in to change notification settings - Fork 41
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
alwaysQuote option doesn't quote null fields #60
Comments
Hi @deakinhead , thanks for the suggestion. I want to avoid making a breaking change at this stage; so probably need to introduce a new flag. Naming would be a struggle. Wish |
ref #38 |
|
@ryu1kn Thanks for the quick response. How long do you think it would take to add? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi. I'm using csv writer to integrate with a warehouse and they require that all values, including null values, in the csv be double quoted. I set the alwaysQuote option to true, but it looks like null values still get output as
,,,,,
rather than
,"","","","",
Would it be possible to add a new option to double quote null values or to update the existing option so that it works that way?
The text was updated successfully, but these errors were encountered: