jonvex commented on code in PR #13572:
URL: https://github.com/apache/hudi/pull/13572#discussion_r2238025439
##########
hudi-client/hudi-flink-client/src/main/java/org/apache/hudi/util/SchemaEvolvingRowDataProjection.java:
##########
@@ -69,7 +69,7 @@ private TypeConverters.TypeConverter
createProjection(LogicalType fromType, Logi
case ROW:
return createRowProjection(fromType, toType, renamedColumns,
fieldNameStack);
default:
- if (fromType.equals(toType)) {
+ if (fromType.equals(toType) ||
fromType.getTypeRoot().equals(toType.getTypeRoot())) {
Review Comment:
nullable
--
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]