[TD-4352]compact tsdb meta data implementation

This commit is contained in:
lichuang 2021-06-22 16:47:13 +08:00
parent ea75e443ed
commit dd56422607
1 changed files with 4 additions and 2 deletions

View File

@ -538,8 +538,10 @@ _err:
tfree(pBuf); tfree(pBuf);
tsdbInfo("end compact tsdb meta file, code:%d, nDels:%" PRId64 ",nRecords:%" PRId64 ",tombSize:%" PRId64 ",size:%" PRId64, ASSERT(mf.info.nDels == 0);
code, mf.info.nDels,mf.info.nRecords,mf.info.tombSize,mf.info.size); ASSERT(mf.info.tombSize == 0);
tsdbInfo("end compact tsdb meta file,code:%d,nRecords:%" PRId64 ",size:%" PRId64,
code,mf.info.nRecords,mf.info.size);
return code; return code;
} }