Browse Source

Addresses #1842 Fix le_any_val (LE_BOTH) to return the provisional value.

git-svn-id: file:///svn/toku/tokudb@13076 c7de825b-a66e-492c-adef-691d508d4ae1
pull/73/head
Yoni Fogel 13 years ago
parent
commit
53a12b9706
  1. 2
      newbrt/leafentry.c

2
newbrt/leafentry.c

@ -408,7 +408,7 @@ void* any_val_le_committed (u_int32_t UU(keylen), void *UU(key), u_int32_t UU(va
return val;
}
void* any_val_le_both (TXNID UU(xid), u_int32_t UU(klen), void *UU(kval), u_int32_t UU(clen), void *cval, u_int32_t UU(plen), void *UU(pval)) {
return cval;
return pval;
}
void* any_val_le_provdel (TXNID UU(xid), u_int32_t UU(klen), void *UU(kval), u_int32_t UU(clen), void *cval) {
return cval;

Loading…
Cancel
Save