Merge pull request #28582 from taosdata/fix/3.0/TD-32703-2

fix firstVer incorrect while remove wal dir
This commit is contained in:
Shengliang Guan 2024-10-31 15:53:39 +08:00 committed by GitHub
commit 31a944c41c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 3 deletions

View File

@ -664,7 +664,7 @@ static FORCE_INLINE int32_t walWriteImpl(SWal *pWal, int64_t index, tmsg_t msgTy
// set status // set status
if (pWal->vers.firstVer == -1) { if (pWal->vers.firstVer == -1) {
pWal->vers.firstVer = 0; pWal->vers.firstVer = index;
} }
pWal->vers.lastVer = index; pWal->vers.lastVer = index;
pWal->totSize += sizeof(SWalCkHead) + cyptedBodyLen; pWal->totSize += sizeof(SWalCkHead) + cyptedBodyLen;

View File

@ -17,8 +17,6 @@ sys.path.append("./7-tmq")
from tmqCommon import * from tmqCommon import *
class TDTestCase: class TDTestCase:
updatecfgDict = {'sDebugFlag':143, 'wDebugFlag':143}
def __init__(self): def __init__(self):
self.vgroups = 1 self.vgroups = 1
self.ctbNum = 10 self.ctbNum = 10