1. 26 Aug, 2008 2 commits
  2. 25 Aug, 2008 1 commit
  3. 22 Aug, 2008 2 commits
  4. 18 Aug, 2008 10 commits
  5. 15 Aug, 2008 3 commits
  6. 14 Aug, 2008 1 commit
  7. 13 Aug, 2008 1 commit
  8. 12 Aug, 2008 4 commits
  9. 11 Aug, 2008 1 commit
  10. 09 Aug, 2008 1 commit
  11. 04 Aug, 2008 3 commits
  12. 01 Aug, 2008 1 commit
  13. 31 Jul, 2008 1 commit
    • Yoni Fogel's avatar
      Closes #1062 · 630a0b55
      Yoni Fogel authored
      Fix cases in the c_getf_* functions where we were retrieving a key DBT instead of a val.
      
      git-svn-id: file:///svn/tokudb@5454 c7de825b-a66e-492c-adef-691d508d4ae1
      630a0b55
  14. 30 Jul, 2008 2 commits
  15. 29 Jul, 2008 1 commit
  16. 28 Jul, 2008 6 commits
    • Rich Prohaska's avatar
      this test depends on virtual time which does not exists. closes #1049 · d5a30d01
      Rich Prohaska authored
      git-svn-id: file:///svn/tokudb@5397 c7de825b-a66e-492c-adef-691d508d4ae1
      d5a30d01
    • Rich Prohaska's avatar
      use trace memory. addresses #1042 · d8218152
      Rich Prohaska authored
      git-svn-id: file:///svn/tokudb@5390 c7de825b-a66e-492c-adef-691d508d4ae1
      d8218152
    • Yoni Fogel's avatar
      Closes #1050 · 18438739
      Yoni Fogel authored
      Implemented c_getf_next_dup
      
      git-svn-id: file:///svn/tokudb@5389 c7de825b-a66e-492c-adef-691d508d4ae1
      18438739
    • Yoni Fogel's avatar
      Closes #1048 · e807f05f
      Yoni Fogel authored
      Replaced 'test_thread_stack.%' in rules with '$<', which refers to the first
      prerequisite listed.
      
      This fixes the nondeterministic nature of this test failing (for reasons
      of being unable to find the binary).
      
      git-svn-id: file:///svn/tokudb@5387 c7de825b-a66e-492c-adef-691d508d4ae1
      e807f05f
    • Yoni Fogel's avatar
      Addresses #903 · 3a660f2e
      Yoni Fogel authored
      Created function that peeks at both key and value at the same time
      (to avoid repeated OMT calls).
      This was worth 4-5% performance in scanscan --lwc --prelock --prelockflag
      
      
      git-svn-id: file:///svn/tokudb@5386 c7de825b-a66e-492c-adef-691d508d4ae1
      3a660f2e
    • Yoni Fogel's avatar
      Addresses #903 · 284bc3c1
      Yoni Fogel authored
      Speed up light weight cursors.
      Instead of asking the brt to use 'copyout' (by passing key and/or val pointers)
      we pass in NULLs to brt_cursor_get.
      We then later use the peek_current functions to obtain pointers to the current
      key and val of the cursor.
      
      That was worth ~22% reduction in time for scanscan --lwc --prelock --prelockflag
      
      Also, now copyout quits immediately if both key and val are NULL
      This increased the (total) value of the patch to ~30% reduction  in time.
      
      git-svn-id: file:///svn/tokudb@5383 c7de825b-a66e-492c-adef-691d508d4ae1
      284bc3c1