HBASE-27248 WALPrettyPrinter add print timestamp (#4659)

Co-authored-by: SiCheng-Zheng <zhengsicheng@jd.com>
Signed-off-by: Duo Zhang <zhangduo@apache.org>
This commit is contained in:
SiCheng-Zheng 2022-08-10 21:10:21 +08:00 committed by GitHub
parent 8c0633688e
commit 6b2e9d14a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

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