From 6babfad71f00c9cf048e97ff23ca646947d124e6 Mon Sep 17 00:00:00 2001 From: Michael Stack Date: Tue, 10 Nov 2009 21:01:50 +0000 Subject: [PATCH] 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 --- .../hadoop/hbase/mapreduce/TestTableInputFormatScan.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/test/org/apache/hadoop/hbase/mapreduce/TestTableInputFormatScan.java b/src/test/org/apache/hadoop/hbase/mapreduce/TestTableInputFormatScan.java index fc491c47f77..c0be47fd305 100644 --- a/src/test/org/apache/hadoop/hbase/mapreduce/TestTableInputFormatScan.java +++ b/src/test/org/apache/hadoop/hbase/mapreduce/TestTableInputFormatScan.java @@ -278,7 +278,7 @@ public class TestTableInputFormatScan { @Test public void testScanOPPToEmpty() throws IOException, InterruptedException, ClassNotFoundException { - testScan("opp", null, null); + testScan("opp", null, "zzz"); } /** @@ -291,7 +291,7 @@ public class TestTableInputFormatScan { @Test public void testScanYYXToEmpty() throws IOException, InterruptedException, ClassNotFoundException { - testScan("yyx", null, null); + testScan("yyx", null, "zzz"); } /** @@ -304,7 +304,7 @@ public class TestTableInputFormatScan { @Test public void testScanYYYToEmpty() throws IOException, InterruptedException, ClassNotFoundException { - testScan("yyy", null, null); + testScan("yyy", null, "zzz"); } /** @@ -317,7 +317,7 @@ public class TestTableInputFormatScan { @Test public void testScanYZYToEmpty() throws IOException, InterruptedException, ClassNotFoundException { - testScan("yzy", null, null); + testScan("yzy", null, "zzz"); } /**