Skip to content

Commit e114800

Browse files
committed
allow Utf8View in subtrait
1 parent 1732978 commit e114800

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/substrait/src/physical_plan/producer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ fn to_substrait_type(data_type: &DataType, nullable: bool) -> Result<Type> {
153153
nullability,
154154
})),
155155
}),
156-
DataType::Utf8 => Ok(Type {
156+
DataType::Utf8 | DataType::Utf8View => Ok(Type {
157157
kind: Some(Kind::String(SubstraitString {
158158
type_variation_reference: 0,
159159
nullability,

0 commit comments

Comments
 (0)