Skip to content

Commit

Permalink
handle Utf8Owned AnyValue for DataType (#2944)
Browse files Browse the repository at this point in the history
  • Loading branch information
cigrainger committed Mar 22, 2022
1 parent b4707f0 commit c71b56e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions polars/polars-core/src/frame/row.rs
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,7 @@ impl<'a> From<&AnyValue<'a>> for DataType {
Null => DataType::Null,
Boolean(_) => DataType::Boolean,
Utf8(_) => DataType::Utf8,
Utf8Owned(_) => DataType::Utf8,
UInt32(_) => DataType::UInt32,
UInt64(_) => DataType::UInt64,
Int32(_) => DataType::Int32,
Expand Down

0 comments on commit c71b56e

Please sign in to comment.