fix: ignore file not exist error of tdbOsRemove

This commit is contained in:
Benguang Zhao 2022-10-11 19:58:01 +08:00
parent c70d10334c
commit a4cc3f76d4
1 changed files with 1 additions and 0 deletions

View File

@ -156,6 +156,7 @@ int tdbPagerOpenDB(SPager *pPager, SPgno *ppgno, bool toCreate, SBTree *pBt) {
ret = tdbPagerWrite(pPager, pPage);
if (ret < 0) {
tdbError("failed to write page since %s", terrstr());
return -1;
}