Class TestLimitedScanWithFilter

java.lang.Object
org.apache.hadoop.hbase.client.TestLimitedScanWithFilter

public class TestLimitedScanWithFilter extends Object
With filter we may stop at a middle of row and think that we still have more cells for the current row but actually all the remaining cells will be filtered out by the filter. So it will lead to a Result that mayHaveMoreCellsInRow is true but actually there are no cells for the same row. Here we want to test if our limited scan still works.