This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/master by this push:
new 6b2e9d14a71 HBASE-27248 WALPrettyPrinter add print timestamp (#4659)
6b2e9d14a71 is described below
commit 6b2e9d14a71d3ccbedabf971fe961802d263a995
Author: SiCheng-Zheng <[email protected]>
AuthorDate: Wed Aug 10 21:10:21 2022 +0800
HBASE-27248 WALPrettyPrinter add print timestamp (#4659)
Co-authored-by: SiCheng-Zheng <[email protected]>
Signed-off-by: Duo Zhang <[email protected]>
---
.../src/main/java/org/apache/hadoop/hbase/wal/WALPrettyPrinter.java | 1 +
1 file changed, 1 insertion(+)
diff --git
a/hbase-server/src/main/java/org/apache/hadoop/hbase/wal/WALPrettyPrinter.java
b/hbase-server/src/main/java/org/apache/hadoop/hbase/wal/WALPrettyPrinter.java
index d76ac7da7d7..21c18964de7 100644
---
a/hbase-server/src/main/java/org/apache/hadoop/hbase/wal/WALPrettyPrinter.java
+++
b/hbase-server/src/main/java/org/apache/hadoop/hbase/wal/WALPrettyPrinter.java
@@ -344,6 +344,7 @@ public class WALPrettyPrinter {
}
rowDetails += ", column=" + op.get("family") + ":" + op.get("qualifier");
+ rowDetails += ", timestamp=" + op.get("timestamp");
rowDetails += ", type=" + op.get("type");
out.println(rowDetails);
if (op.get("tag") != null) {