HBASE-1829 Make use of start/stop row in TableInputFormat

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@834664 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2009-11-10 21:01:50 +00:00
parent ca1f068c57
commit 6babfad71f
1 changed files with 4 additions and 4 deletions

View File

@ -278,7 +278,7 @@ public class TestTableInputFormatScan {
@Test @Test
public void testScanOPPToEmpty() public void testScanOPPToEmpty()
throws IOException, InterruptedException, ClassNotFoundException { throws IOException, InterruptedException, ClassNotFoundException {
testScan("opp", null, null); testScan("opp", null, "zzz");
} }
/** /**
@ -291,7 +291,7 @@ public class TestTableInputFormatScan {
@Test @Test
public void testScanYYXToEmpty() public void testScanYYXToEmpty()
throws IOException, InterruptedException, ClassNotFoundException { throws IOException, InterruptedException, ClassNotFoundException {
testScan("yyx", null, null); testScan("yyx", null, "zzz");
} }
/** /**
@ -304,7 +304,7 @@ public class TestTableInputFormatScan {
@Test @Test
public void testScanYYYToEmpty() public void testScanYYYToEmpty()
throws IOException, InterruptedException, ClassNotFoundException { throws IOException, InterruptedException, ClassNotFoundException {
testScan("yyy", null, null); testScan("yyy", null, "zzz");
} }
/** /**
@ -317,7 +317,7 @@ public class TestTableInputFormatScan {
@Test @Test
public void testScanYZYToEmpty() public void testScanYZYToEmpty()
throws IOException, InterruptedException, ClassNotFoundException { throws IOException, InterruptedException, ClassNotFoundException {
testScan("yzy", null, null); testScan("yzy", null, "zzz");
} }
/** /**