fix:rollback meta change

This commit is contained in:
wangmm0220 2022-07-06 10:36:56 +08:00
parent f47c3595a2
commit 78cdc64615
1 changed files with 0 additions and 3 deletions

View File

@ -314,7 +314,6 @@ static int tdbDefaultKeyCmprFn(const void *pKey1, int keyLen1, const void *pKey2
static int tdbBtreeOpenImpl(SBTree *pBt) {
// Try to get the root page of the an existing btree
#if 0
SPgno pgno;
SPage *pPage;
int ret;
@ -339,8 +338,6 @@ static int tdbBtreeOpenImpl(SBTree *pBt) {
ASSERT(pgno != 0);
pBt->root = pgno;
#endif
pBt->root = 0;
return 0;
}