Commit e360035b authored by Yoni Fogel's avatar Yoni Fogel

Addresses #287 Added missing error code to toku_rt_insert

git-svn-id: file:///svn/tokudb@1741 c7de825b-a66e-492c-adef-691d508d4ae1
parent 2eff86b2
...@@ -110,6 +110,8 @@ int toku_rt_insert(toku_range_tree* tree, toku_range* range); ...@@ -110,6 +110,8 @@ int toku_rt_insert(toku_range_tree* tree, toku_range* range);
* EINVAL: If any pointer argument is NULL. * EINVAL: If any pointer argument is NULL.
* EDOM: If the exact range (left, right, and data) did * EDOM: If the exact range (left, right, and data) did
* not exist in the tree. * not exist in the tree.
* If an overlapping range exists in the tree and
* allow_overlaps == FALSE.
* Other exit codes may be forwarded from underlying system calls. * Other exit codes may be forwarded from underlying system calls.
*/ */
int toku_rt_delete(toku_range_tree* tree, toku_range* range); int toku_rt_delete(toku_range_tree* tree, toku_range* range);
......
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