Author: stack
Date: Tue Nov 10 21:01:50 2009
New Revision: 834664

URL: http://svn.apache.org/viewvc?rev=834664&view=rev
Log:
HBASE-1829 Make use of start/stop row in TableInputFormat

Modified:
    
hadoop/hbase/trunk/src/test/org/apache/hadoop/hbase/mapreduce/TestTableInputFormatScan.java

Modified: 
hadoop/hbase/trunk/src/test/org/apache/hadoop/hbase/mapreduce/TestTableInputFormatScan.java
URL: 
http://svn.apache.org/viewvc/hadoop/hbase/trunk/src/test/org/apache/hadoop/hbase/mapreduce/TestTableInputFormatScan.java?rev=834664&r1=834663&r2=834664&view=diff
==============================================================================
--- 
hadoop/hbase/trunk/src/test/org/apache/hadoop/hbase/mapreduce/TestTableInputFormatScan.java
 (original)
+++ 
hadoop/hbase/trunk/src/test/org/apache/hadoop/hbase/mapreduce/TestTableInputFormatScan.java
 Tue Nov 10 21:01:50 2009
@@ -278,7 +278,7 @@
   @Test
   public void testScanOPPToEmpty() 
   throws IOException, InterruptedException, ClassNotFoundException {
-    testScan("opp", null, null);
+    testScan("opp", null, "zzz");
   }
   
   /**
@@ -291,7 +291,7 @@
   @Test
   public void testScanYYXToEmpty() 
   throws IOException, InterruptedException, ClassNotFoundException {
-    testScan("yyx", null, null);
+    testScan("yyx", null, "zzz");
   }
 
   /**
@@ -304,7 +304,7 @@
   @Test
   public void testScanYYYToEmpty() 
   throws IOException, InterruptedException, ClassNotFoundException {
-    testScan("yyy", null, null);
+    testScan("yyy", null, "zzz");
   }
 
   /**
@@ -317,7 +317,7 @@
   @Test
   public void testScanYZYToEmpty() 
   throws IOException, InterruptedException, ClassNotFoundException {
-    testScan("yzy", null, null);
+    testScan("yzy", null, "zzz");
   }
 
   /**


Reply via email to