mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 03:51:50 +01:00
Add c_pget to DB->cursor
closes #107 git-svn-id: file:///svn/tokudb@943 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
parent
6a762592d1
commit
f9cf264d03
1 changed files with 1 additions and 0 deletions
|
@ -749,6 +749,7 @@ static int toku_db_cursor(DB * db, DB_TXN * txn, DBC ** c, u_int32_t flags) {
|
|||
return ENOMEM;
|
||||
memset(result, 0, sizeof *result);
|
||||
result->c_get = toku_c_get;
|
||||
result->c_pget = toku_c_pget;
|
||||
result->c_close = toku_c_close;
|
||||
result->c_del = toku_c_del;
|
||||
MALLOC(result->i);
|
||||
|
|
Loading…
Add table
Reference in a new issue