HBASE-27248 WALPrettyPrinter add print timestamp (#4659)

Co-authored-by: SiCheng-Zheng <zhengsicheng@jd.com>
Signed-off-by: Duo Zhang <zhangduo@apache.org>
(cherry picked from commit 6b2e9d14a7)
This commit is contained in:
SiCheng-Zheng 2022-08-10 21:10:21 +08:00 committed by Duo Zhang
parent e99faad83e
commit 25e192b807
1 changed files with 1 additions and 0 deletions

View File

@ -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) {