You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by bi...@apache.org on 2012/07/24 20:41:23 UTC

svn commit: r1365213 - /accumulo/branches/1.4/src/core/src/main/java/org/apache/accumulo/core/client/impl/OfflineScanner.java

Author: billie
Date: Tue Jul 24 18:41:22 2012
New Revision: 1365213

URL: http://svn.apache.org/viewvc?rev=1365213&view=rev
Log:
ACCUMULO-654 fixed range setting bug

Modified:
    accumulo/branches/1.4/src/core/src/main/java/org/apache/accumulo/core/client/impl/OfflineScanner.java

Modified: accumulo/branches/1.4/src/core/src/main/java/org/apache/accumulo/core/client/impl/OfflineScanner.java
URL: http://svn.apache.org/viewvc/accumulo/branches/1.4/src/core/src/main/java/org/apache/accumulo/core/client/impl/OfflineScanner.java?rev=1365213&r1=1365212&r2=1365213&view=diff
==============================================================================
--- accumulo/branches/1.4/src/core/src/main/java/org/apache/accumulo/core/client/impl/OfflineScanner.java (original)
+++ accumulo/branches/1.4/src/core/src/main/java/org/apache/accumulo/core/client/impl/OfflineScanner.java Tue Jul 24 18:41:22 2012
@@ -128,7 +128,7 @@ class OfflineIterator implements Iterato
     this.range = range;
     
     if (this.options.fetchedColumns.size() > 0) {
-      range = range.bound(this.options.fetchedColumns.first(), this.options.fetchedColumns.last());
+      this.range = range.bound(this.options.fetchedColumns.first(), this.options.fetchedColumns.last());
     }
 
     this.tableId = table.toString();