[CSV-203]
withNullString value is printed without quotes when QuoteMode.ALL is specified; add QuoteMode.ALL_NON_NULL. PR #17.
This commit is contained in:
parent
09cf3739df
commit
9ae4b56c2a
|
@ -362,7 +362,8 @@ public final class CSVFormat implements Serializable {
|
|||
.withIgnoreEmptyLines(false)
|
||||
.withQuote(null)
|
||||
.withRecordSeparator(LF)
|
||||
.withNullString("\\N");
|
||||
.withNullString("\\N")
|
||||
.withQuoteMode(QuoteMode.ALL_NON_NULL);
|
||||
// @formatter:off
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue