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:26:01 -08:00
parent c057604742
commit 5cee77a1f1
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) {