Blizzara commented on code in PR #10531:
URL: https://github.com/apache/datafusion/pull/10531#discussion_r1601978505


##########
datafusion/substrait/src/logical_plan/consumer.rs:
##########
@@ -1137,7 +1220,8 @@ fn from_substrait_type(dt: &substrait::proto::Type) -> 
Result<DataType> {
                     from_substrait_type(list.r#type.as_ref().ok_or_else(|| {
                         substrait_datafusion_err!("List type must have inner 
type")
                     })?)?;
-                let field = Arc::new(Field::new("list_item", inner_type, 
true));
+                // "item" as the field name aligns with Arrow's default, see 
e.g. array_into_list_array
+                let field = Arc::new(Field::new("item", inner_type, true));

Review Comment:
   this is in theory a breaking change I guess, but I don't know if there's any 
reason for anyone to be referring to the item field name



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to