Commit 5bff9fc3 authored by Yoni Fogel's avatar Yoni Fogel

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
parent 53849041
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment