fix compiler warning in bTree.c
This commit is contained in:
parent
0bce11e0c8
commit
aca4365108
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ int TbtreeInsert(int xid, recordid rid, void *cmp_arg, byte *key, size_t keySize
|
|||
recordid newrid = stasis_record_alloc_begin(xid, p, sz);
|
||||
if(newrid.size != sz) {
|
||||
// split leaf into two halves (based on slot count)
|
||||
pageid_t leftpage = p->id;
|
||||
//pageid_t leftpage = p->id;
|
||||
pageid_t rightpage = TpageAlloc(xid);
|
||||
TinitializeSlottedPage(xid, rightpage);
|
||||
Page * rightp = loadPage(xid, rightpage);
|
||||
|
|
Loading…
Reference in a new issue