This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a commit to branch branch-2.5
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2.5 by this push:
new 5a606837fc7 HBASE-27248 WALPrettyPrinter add print timestamp (#4659)
5a606837fc7 is described below
commit 5a606837fc78c46cc98ccb0eccfa90753a4f5895
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]>
(cherry picked from commit 6b2e9d14a71d3ccbedabf971fe961802d263a995)
---
.../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 ef52c278c4c..80841f1ff4d 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
@@ -365,6 +365,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) {