xiaochen-zhou commented on PR #9983:
URL: https://github.com/apache/seatunnel/pull/9983#issuecomment-3448018076
Since the current scan parameters we set include both the start row and the
end row, I think the condition Bytes.compareTo(userEndRowkey, regionStartKey)
<= 0 causing this region to be ignored is correct.
```java
scan.withStartRow(split.getStartRow(), true);
scan.withStopRow(split.getEndRow(), true);
```
I have added a test case:
HbaseSourceSplitEnumeratorTest#testGetTableSplitsWithExactEndRowKeyMatch().
@davidzollo
--
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]