Skip to content

Commit

Permalink
fix: Add FixedSizeBinary to arrow field conversion (#15389)
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 authored Mar 29, 2024
1 parent 4a6c179 commit 7216f9c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions crates/polars-core/src/datatypes/field.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ impl DataType {
DataType::BinaryOffset
}
},
ArrowDataType::FixedSizeBinary(_) => DataType::Binary,
dt => panic!("Arrow datatype {dt:?} not supported by Polars. You probably need to activate that data-type feature."),
}
}
Expand Down

0 comments on commit 7216f9c

Please sign in to comment.