alamb commented on code in PR #6722:
URL: https://github.com/apache/arrow-datafusion/pull/6722#discussion_r1242679164
##########
datafusion/common/src/dfschema.rs:
##########
@@ -1133,13 +1178,25 @@ mod tests {
let schema2 = to_df_schema(self.fields2);
assert_eq!(
schema1.equivalent_names_and_types(&schema2),
- self.expected,
+ self.expected_dfschema,
"Comparison did not match expected: {}\n\n\
schema1:\n\n{:#?}\n\nschema2:\n\n{:#?}",
- self.expected,
+ self.expected_dfschema,
schema1,
schema2
);
+
+ let arrow_schema1 = Schema::from(schema1);
Review Comment:
👍
Looks good -- thank you
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]