[TD-4352]compact tsdb meta data implementation

This commit is contained in:
lichuang 2021-06-22 16:43:57 +08:00
parent b50154343d
commit ea75e443ed
1 changed files with 3 additions and 1 deletions

View File

@ -537,7 +537,9 @@ _err:
}
tfree(pBuf);
tsdbInfo("end compact tsdb meta file, code:%d", code);
tsdbInfo("end compact tsdb meta file, code:%d, nDels:%" PRId64 ",nRecords:%" PRId64 ",tombSize:%" PRId64 ",size:%" PRId64,
code, mf.info.nDels,mf.info.nRecords,mf.info.tombSize,mf.info.size);
return code;
}