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:
eclark 2013-08-20 19:39:26 +00:00
parent 88afeb0c0e
commit a07a9dbbe6
1 changed files with 4 additions and 0 deletions

View File

@ -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;