You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2014/05/28 22:51:51 UTC

[18/32] git commit: ACCUMULO-2789 Fix error handling max column qualifier length. It was using the values for the column family size.

ACCUMULO-2789 Fix error handling max column qualifier length. It was using the values for the column family size.


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/6970d73e
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/6970d73e
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/6970d73e

Branch: refs/heads/ACCUMULO-378
Commit: 6970d73ea94fb8ab4bd3e429c25510194c1ff9e3
Parents: 2526f0a
Author: Bill Slacum <uj...@apache.org>
Authored: Fri May 23 18:00:13 2014 -0400
Committer: Bill Slacum <uj...@apache.org>
Committed: Fri May 23 18:00:13 2014 -0400

----------------------------------------------------------------------
 .../java/org/apache/accumulo/test/stress/random/WriteOptions.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/6970d73e/test/src/main/java/org/apache/accumulo/test/stress/random/WriteOptions.java
----------------------------------------------------------------------
diff --git a/test/src/main/java/org/apache/accumulo/test/stress/random/WriteOptions.java b/test/src/main/java/org/apache/accumulo/test/stress/random/WriteOptions.java
index b246ab7..b850e85 100644
--- a/test/src/main/java/org/apache/accumulo/test/stress/random/WriteOptions.java
+++ b/test/src/main/java/org/apache/accumulo/test/stress/random/WriteOptions.java
@@ -139,7 +139,7 @@ class WriteOptions extends ClientOnDefaultTable {
   }
   
   public int cqMax() {
-    return calculateMax(cf_min, cf_max);
+    return calculateMax(cq_min, cq_max);
   }
   
   public int valueMin() {