Repository: hbase Updated Branches: refs/heads/branch-1.0 bf8287ebe -> 2f5e6e47f
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/2f5e6e47 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/2f5e6e47 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/2f5e6e47 Branch: refs/heads/branch-1.0 Commit: 2f5e6e47f30e64d34e1db5734c9d91fe03ef4e1b Parents: bf8287e Author: tedyu <[email protected]> Authored: Mon Jan 26 15:26:01 2015 -0800 Committer: Enis Soztutar <[email protected]> Committed: Mon Jan 26 16:39:15 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/2f5e6e47/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) {
