From 615aa1ca25a786bdc579e424f2043c5641c2ac7f Mon Sep 17 00:00:00 2001 From: Rich Prohaska Date: Tue, 18 Dec 2007 21:44:14 +0000 Subject: [PATCH] disabled in the code until it works. addresses #187 git-svn-id: file:///svn/tokudb@1221 c7de825b-a66e-492c-adef-691d508d4ae1 --- newbrt/brt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/newbrt/brt.c b/newbrt/brt.c index 02014749628..df7ee5bb9a1 100644 --- a/newbrt/brt.c +++ b/newbrt/brt.c @@ -2906,6 +2906,7 @@ int toku_brt_cursor_get (BRT_CURSOR cursor, DBT *kbt, DBT *vbt, int flags, TOKUT if (r != 0) goto died0; break; case DB_GET_BOTH_RANGE: + r = EINVAL; goto died0; /* does not work yet */ r = unpin_cursor(cursor); assert(r == 0); r = brtcurs_set_search(cursor, *rootp, DB_GET_BOTH_RANGE, kbt, vbt, txn, null_brtnode); if (r != 0) goto died0;