Skip to content

Commit 9a4c9d5

Browse files
authored
Switch Unspecified to Required (#15011)
1 parent 66c2988 commit 9a4c9d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/substrait/src/logical_plan/producer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1039,7 +1039,7 @@ fn to_substrait_named_struct(schema: &DFSchemaRef) -> Result<NamedStruct> {
10391039
.map(|f| to_substrait_type(f.data_type(), f.is_nullable()))
10401040
.collect::<Result<_>>()?,
10411041
type_variation_reference: DEFAULT_TYPE_VARIATION_REF,
1042-
nullability: r#type::Nullability::Unspecified as i32,
1042+
nullability: r#type::Nullability::Required as i32,
10431043
};
10441044

10451045
Ok(NamedStruct {

0 commit comments

Comments
 (0)