diff --git a/source/libs/tdb/src/db/tdbPager.c b/source/libs/tdb/src/db/tdbPager.c index a1d57db8d3b0a9fca874f54f1643d04fae57e03e..9c00a82826574eeeae206efe59ce551d563eb714 100644 --- a/source/libs/tdb/src/db/tdbPager.c +++ b/source/libs/tdb/src/db/tdbPager.c @@ -736,7 +736,7 @@ static int tdbPagerRemoveFreePage(SPager *pPager, SPgno *pPgno, TXN *pTxn) { code = tdbTbcGet(pCur, (const void **)&pKey, &nKey, NULL, NULL); if (code < 0) { - tdbError("tdb/remove-free-page: tbc get failed with ret: %d.", code); + // tdbError("tdb/remove-free-page: tbc get failed with ret: %d.", code); tdbTbcClose(pCur); return 0; } @@ -754,7 +754,7 @@ static int tdbPagerRemoveFreePage(SPager *pPager, SPgno *pPgno, TXN *pTxn) { } static int tdbPagerAllocFreePage(SPager *pPager, SPgno *ppgno, TXN *pTxn) { - // TODO: Allocate a page from the free list + // Allocate a page from the free list return tdbPagerRemoveFreePage(pPager, ppgno, pTxn); }