This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
CSV writing: distinguish between missing and empty strings #865
Labels
no-changelog
Issues whose changes are covered by a PR and thus should not be shown in the changelog
Currently the csv writer encodes missing data and empty strings equally. Because a csv field may be quoted, we could use that as the empty string value.
2 empty strings
2 missing data
Current behavior:
If we encode a single column, we seem to quote both missing and emtpy:
However if we encode multiple columns, we change our behavior and we don't encode any.
I think we should also be consistent no matter how many columns we encode.
The text was updated successfully, but these errors were encountered: