Commit 2fe4eccd authored by Rich Prohaska's avatar Rich Prohaska

make deleted kv pairs invisible

git-svn-id: file:///svn/tokudb@246 c7de825b-a66e-492c-adef-691d508d4ae1
parent c76b4f0e
......@@ -28,7 +28,7 @@ int pma_index_limit (PMA pma) {
int pmanode_valid (PMA pma, int i) {
assert(0<=i); assert(i<pma_index_limit(pma));
return kv_pair_inuse(pma->pairs[i]);
return kv_pair_valid(pma->pairs[i]);
}
bytevec pmanode_key (PMA pma, int i) {
......
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