HBASE-9269 IntegrationTestBulkLoad fails because a public constructor is needed.
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1515947 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
88afeb0c0e
commit
a07a9dbbe6
|
@ -329,6 +329,8 @@ public class IntegrationTestBulkLoad extends IntegrationTestBase {
|
|||
|
||||
private Long order;
|
||||
|
||||
public LinkKey() {}
|
||||
|
||||
public LinkKey(long chainId, long order) {
|
||||
this.chainId = chainId;
|
||||
this.order = order;
|
||||
|
@ -369,6 +371,8 @@ public class IntegrationTestBulkLoad extends IntegrationTestBase {
|
|||
return rk;
|
||||
}
|
||||
|
||||
public LinkChain() {}
|
||||
|
||||
public LinkChain(Long rk, Long next) {
|
||||
this.rk = rk;
|
||||
this.next = next;
|
||||
|
|
Loading…
Reference in New Issue