Repository: hbase Updated Branches: refs/heads/master 26b8b48b4 -> 1b9367d46
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/1b9367d4 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/1b9367d4 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/1b9367d4 Branch: refs/heads/master Commit: 1b9367d465dc99559b4ac36b30be5e2e98ff67a7 Parents: 26b8b48 Author: tedyu <[email protected]> Authored: Mon Jan 26 15:25:02 2015 -0800 Committer: tedyu <[email protected]> Committed: Mon Jan 26 15:25:02 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/1b9367d4/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) {
