1
0

[HUDI-4179] Cluster with sort cloumns invalid (#5739)

This commit is contained in:
KnightChess
2022-06-02 20:28:21 +08:00
committed by GitHub
parent 7f8630cc57
commit 51602a34f7

View File

@@ -68,7 +68,7 @@ public class RDDCustomColumnsSortPartitioner<T extends HoodieRecordPayload>
if (recordValue == null) {
return StringUtils.EMPTY_STRING;
} else {
return StringUtils.objToString(record);
return StringUtils.objToString(recordValue);
}
},
true, outputSparkPartitions);