Skip to content

Commit

Permalink
allow Utf8View in subtrait
Browse files Browse the repository at this point in the history
  • Loading branch information
XiangpengHao committed Aug 9, 2024
1 parent 1732978 commit e114800
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/substrait/src/physical_plan/producer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ fn to_substrait_type(data_type: &DataType, nullable: bool) -> Result<Type> {
nullability,
})),
}),
DataType::Utf8 => Ok(Type {
DataType::Utf8 | DataType::Utf8View => Ok(Type {
kind: Some(Kind::String(SubstraitString {
type_variation_reference: 0,
nullability,
Expand Down

0 comments on commit e114800

Please sign in to comment.