bbeaudreault commented on code in PR #5775:
URL: https://github.com/apache/hbase/pull/5775#discussion_r1539365245
##########
hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/HFileInputFormat.java:
##########
@@ -109,6 +114,9 @@ public boolean nextKeyValue() throws IOException,
InterruptedException {
return false;
}
value = scanner.getCell();
+ if (value != null && bulkloadSeqId.isPresent()) {
+ PrivateCellUtil.setSequenceId(value, bulkloadSeqId.getAsLong());
Review Comment:
Yea setSequenceId throws IOException. Figured it looks cleaner this way
--
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]