support s3

This commit is contained in:
yihaoDeng 2023-11-09 20:27:30 +08:00
parent 5f9b922a04
commit 4a99bdc2b0
1 changed files with 8 additions and 7 deletions

View File

@ -3633,14 +3633,15 @@ int32_t bkdMgtGetDelta(SBkdMgt* bm, char* taskId, int64_t chkpId, SArray* list,
taosHashPut(bm->pDbChkpTbl, taskId, strlen(taskId), &p, sizeof(void*));
taosMemoryFree(taskPath);
}
taosThreadRwlockUnlock(&bm->rwLock);
code = dbChkpGetDelta(pChkp, chkpId, list);
pChkp = p;
code = dbChkpDumpTo(pChkp, dname);
taosThreadRwlockUnlock(&bm->rwLock);
return code;
}
code = dbChkpGetDelta(pChkp, chkpId, list);
taosThreadRwlockUnlock(&bm->rwLock);
return code;
}