ritchie46 commented on a change in pull request #9778:
URL: https://github.com/apache/arrow/pull/9778#discussion_r601192494
##########
File path: rust/arrow/src/datatypes/field.rs
##########
@@ -39,6 +39,12 @@ pub struct Field {
metadata: Option<BTreeMap<String, String>>,
}
+impl Default for Field {
+ fn default() -> Self {
+ Field::new("", DataType::Null, false)
+ }
+}
+
Review comment:
Seemed sensible to me, but it's not important so I've removed this.
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]