Skip to content

Commit

Permalink
调整开源hbase实现类依赖
Browse files Browse the repository at this point in the history
  • Loading branch information
majun87 committed Dec 16, 2020
1 parent 2928858 commit 9fbd8c4
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 413 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
import org.joyqueue.server.archive.store.model.Query;
import org.joyqueue.server.archive.store.utils.ArchiveSerializer;

import java.util.Arrays;

/**
* Created by chengzhiliang on 2018/12/4.
*/
Expand Down Expand Up @@ -77,6 +79,17 @@ public void setStartRowKeyByteArr(String startRowKeyByteArr) {
this.startRowKeyByteArr = bytes;
}

@Override
public String toString() {
return "QueryCondition{" +
"startRowKey=" + startRowKey +
", stopRowKey=" + stopRowKey +
", count=" + count +
", rowKey=" + rowKey +
", startRowKeyByteArr=" + Arrays.toString(startRowKeyByteArr) +
'}';
}

/**
* 查询RowKey
*/
Expand Down Expand Up @@ -118,5 +131,14 @@ public void setMessageId(String messageId) {
this.messageId = messageId;
}

@Override
public String toString() {
return "RowKey{" +
"topic='" + topic + '\'' +
", time=" + time +
", businessId='" + businessId + '\'' +
", messageId='" + messageId + '\'' +
'}';
}
}
}

This file was deleted.

0 comments on commit 9fbd8c4

Please sign in to comment.