Skip to content

Commit

Permalink
document unescaped null values; closes #1564
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Oct 22, 2021
1 parent 1b890e0 commit 23aa7c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion polars/polars-io/src/csv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,8 @@ where
self
}

/// Set values that will be interpreted as missing/ null.
/// Set values that will be interpreted as missing/ null. Note that any value you set as null value
/// will not be escaped, so if quotation marks are part of the null value you should include them.
pub fn with_null_values(mut self, null_values: Option<NullValues>) -> Self {
self.null_values = null_values;
self
Expand Down

0 comments on commit 23aa7c5

Please sign in to comment.