HBASE-12917 HFilePerformanceEvaluation Scan tests fail with StackOverflowError due to recursive call in createCell function (Vikas Vishwakarma)

This commit is contained in:
tedyu 2015-01-26 15:25:02 -08:00
parent 26b8b48b42
commit 1b9367d465
1 changed files with 1 additions and 1 deletions

View File

@ -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) {