Empty strings in CSV files aren't being interpreted as null when using a Dictionary(_, Utf8)
#12041
Labels
bug
Something isn't working
Dictionary(_, Utf8)
#12041
Describe the bug
Related to #7797
Empty strings in CSV files aren't being interpreted as null when using a
Dictionary(_, Utf8)
To Reproduce
Create a simple
input.csv
file like this:Run the following code:
Expected behavior
I was expecting the output to look like this:
But the full dataset is returned instead:
Additional context
Tested on v41.0.0
Replace
DataType::Dictionary(Box::new(DataType::UInt8), Box::new(DataType::Utf8))
withDataType::Utf8
and it works.The text was updated successfully, but these errors were encountered: