From 6dff0bcaabf6849cc742d0512e4ed4cf5976cac1 Mon Sep 17 00:00:00 2001 From: kailixu Date: Sat, 4 Mar 2023 19:46:38 +0800 Subject: [PATCH] chore: add vgId --- src/mnode/src/mnodeSdb.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mnode/src/mnodeSdb.c b/src/mnode/src/mnodeSdb.c index 3c43838114..7ea407e809 100644 --- a/src/mnode/src/mnodeSdb.c +++ b/src/mnode/src/mnodeSdb.c @@ -695,10 +695,10 @@ static int32_t sdbProcessDumpWal(SWalHead *hparam) { snprintf(act, 10, "%d", action); } - sdbInfo("sdbWal, act:%s, type:%" PRIi8 ", tableId:%s, suid:%" PRIu64 ", uid:%" PRIu64 + sdbInfo("sdbWal, act:%s, type:%" PRIi8 ", tableId:%s, vgId:%d, suid:%" PRIu64 ", uid:%" PRIu64 ", tid:%d, create:%s, sver:%d, schema:%s", - act, pObj->info.type, pObj->info.tableId, pObj->suid, pObj->uid, pObj->tid, ts, pObj->sversion, - pBuf ? pBuf : ""); + act, pObj->info.type, pObj->info.tableId, pObj->vgId, pObj->suid, pObj->uid, pObj->tid, ts, + pObj->sversion, pBuf ? pBuf : ""); tfree(pBuf); } -- GitLab