Skip to content

Commit

Permalink
Switch Unspecified to Required (apache#15011)
Browse files Browse the repository at this point in the history
  • Loading branch information
amoeba authored and danila-b committed Mar 8, 2025
1 parent 3de1f96 commit d6b49b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/substrait/src/logical_plan/producer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,7 @@ fn to_substrait_named_struct(schema: &DFSchemaRef) -> Result<NamedStruct> {
.map(|f| to_substrait_type(f.data_type(), f.is_nullable()))
.collect::<Result<_>>()?,
type_variation_reference: DEFAULT_TYPE_VARIATION_REF,
nullability: r#type::Nullability::Unspecified as i32,
nullability: r#type::Nullability::Required as i32,
};

Ok(NamedStruct {
Expand Down

0 comments on commit d6b49b5

Please sign in to comment.