trushev commented on code in PR #5830:
URL: https://github.com/apache/hudi/pull/5830#discussion_r927312625
##########
hudi-common/src/main/java/org/apache/hudi/common/table/log/HoodieUnMergedLogRecordScanner.java:
##########
@@ -135,10 +137,15 @@ public Builder
withLogRecordScannerCallback(LogRecordScannerCallback callback) {
return this;
}
+ public Builder withInternalSchema(InternalSchema internalSchema) {
+ this.internalSchema = internalSchema;
+ return this;
Review Comment:
I used the second schema here to be consistent with
`HoodieMergedLogRecordScanner` which already use this approach to scan logs in
`HoodieMergeOnReadRDD#scanLog`
--
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]