HBASE-12917 HFilePerformanceEvaluation Scan tests fail with StackOverflowError due to recursive call in createCell function (Vikas Vishwakarma)
This commit is contained in:
parent
26b8b48b42
commit
1b9367d465
|
@ -75,7 +75,7 @@ public class HFilePerformanceEvaluation {
|
||||||
}
|
}
|
||||||
|
|
||||||
static Cell createCell(final byte [] keyRow) {
|
static Cell createCell(final byte [] keyRow) {
|
||||||
return createCell(keyRow);
|
return CellUtil.createCell(keyRow);
|
||||||
}
|
}
|
||||||
|
|
||||||
static Cell createCell(final byte [] keyRow, final byte [] value) {
|
static Cell createCell(final byte [] keyRow, final byte [] value) {
|
||||||
|
|
Loading…
Reference in New Issue