zhuqi-lucas commented on code in PR #15634:
URL: https://github.com/apache/datafusion/pull/15634#discussion_r2033265386
##########
datafusion/common/src/dfschema.rs:
##########
@@ -711,6 +711,9 @@ impl DFSchema {
.zip(iter2)
.all(|((t1, f1), (t2, f2))| t1 == t2 &&
Self::field_is_logically_equal(f1, f2))
}
+ // Utf8 and Utf8View are logically equivalent
+ (DataType::Utf8, DataType::Utf8View) => true,
Review Comment:
Thank you @Blizzara for fix, this new relax looks good to me, and if we
want more relax type, we can add later.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]