Commit 67fa0f07 authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

ignore DB_PREV_DUP for now. addresses #1412

git-svn-id: file:///svn/toku/tokudb@9065 c7de825b-a66e-492c-adef-691d508d4ae1
parent 0f140383
...@@ -3868,7 +3868,7 @@ int toku_brt_cursor_get (BRT_CURSOR cursor, DBT *key, DBT *val, int get_flags, T ...@@ -3868,7 +3868,7 @@ int toku_brt_cursor_get (BRT_CURSOR cursor, DBT *key, DBT *val, int get_flags, T
else else
r = brt_cursor_prev(cursor, key, val, logger); r = brt_cursor_prev(cursor, key, val, logger);
break; break;
#ifdef DB_PREV_DUP #if 0 && defined(DB_PREV_DUP)
case DB_PREV_DUP: case DB_PREV_DUP:
if (brt_cursor_not_set(cursor)) if (brt_cursor_not_set(cursor))
r = EINVAL; r = EINVAL;
......
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