linliu-code commented on code in PR #13738:
URL: https://github.com/apache/hudi/pull/13738#discussion_r2292609357


##########
hudi-flink-datasource/hudi-flink/src/test/java/org/apache/hudi/utils/TestFlinkWriteClients.java:
##########
@@ -107,7 +108,7 @@ void testRecordMergeConfigForEventTimeOrdering(boolean 
useLegacyConfig) throws E
 
     assertThat(tableConfig.getRecordMergeMode(), 
is(RecordMergeMode.EVENT_TIME_ORDERING));
     assertThat(tableConfig.getRecordMergeStrategyId(), 
is(HoodieRecordMerger.EVENT_TIME_BASED_MERGE_STRATEGY_UUID));
-    assertThat(tableConfig.getPayloadClass(), 
is(EventTimeAvroPayload.class.getName()));
+    assertThat(tableConfig.getPayloadClass(), 
is(DefaultHoodieRecordPayload.class.getName()));

Review Comment:
   After payload deprecation for now. I think Tim is working on to remove all 
payload from the write path.



##########
hudi-flink-datasource/hudi-flink/src/test/java/org/apache/hudi/utils/TestFlinkWriteClients.java:
##########
@@ -152,7 +153,7 @@ void testRecordMergeConfigForPartialUpdate(int 
configOrdinal) throws Exception {
 
     assertThat(tableConfig.getRecordMergeMode(), 
is(RecordMergeMode.EVENT_TIME_ORDERING));
     assertThat(tableConfig.getRecordMergeStrategyId(), 
is(HoodieRecordMerger.EVENT_TIME_BASED_MERGE_STRATEGY_UUID));
-    assertThat(tableConfig.getPayloadClass(), 
is(PartialUpdateAvroPayload.class.getName()));
+    assertThat(tableConfig.getPayloadClass(), 
is(DefaultHoodieRecordPayload.class.getName()));

Review Comment:
   The same as above.



-- 
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]

Reply via email to