Repository: hbase Updated Branches: refs/heads/branch-1 c05760474 -> 5cee77a1f
HBASE-12917 HFilePerformanceEvaluation Scan tests fail with StackOverflowError due to recursive call in createCell function (Vikas Vishwakarma) Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/5cee77a1 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/5cee77a1 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/5cee77a1 Branch: refs/heads/branch-1 Commit: 5cee77a1f1c749ad82ab3c3e2312b4f617f04ed0 Parents: c057604 Author: tedyu <[email protected]> Authored: Mon Jan 26 15:26:01 2015 -0800 Committer: tedyu <[email protected]> Committed: Mon Jan 26 15:26:01 2015 -0800 ---------------------------------------------------------------------- .../java/org/apache/hadoop/hbase/HFilePerformanceEvaluation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/5cee77a1/hbase-server/src/test/java/org/apache/hadoop/hbase/HFilePerformanceEvaluation.java ---------------------------------------------------------------------- diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/HFilePerformanceEvaluation.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/HFilePerformanceEvaluation.java index 848b626..8336543 100644 --- a/hbase-server/src/test/java/org/apache/hadoop/hbase/HFilePerformanceEvaluation.java +++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/HFilePerformanceEvaluation.java @@ -75,7 +75,7 @@ public class HFilePerformanceEvaluation { } static Cell createCell(final byte [] keyRow) { - return createCell(keyRow); + return CellUtil.createCell(keyRow); } static Cell createCell(final byte [] keyRow, final byte [] value) {
