aboutsummaryrefslogtreecommitdiff
path: root/cursor_test.go (follow)
Commit message (Expand)AuthorAgeFilesLines
* skip empty pages during cursor seek•••This commit fixes an issue where keys are skipped by cursors after deletions occur in a bucket. This occurred because the cursor seeks to the leaf page but does not check if it is empty. Fixes #429, #450 Luke Champine2015-11-051-0/+43
* Add cursor examples.Ben Johnson2014-08-161-0/+79
* Remove testify.Ben Johnson2014-07-261-72/+71
* Move tests to a test package.Ben Johnson2014-07-261-21/+22
* Remove wrapping test closures.Ben Johnson2014-07-261-294/+306
* add Cursor.Delete()Martin Kobetic2014-06-111-0/+40
* Add seek forward test.Ben Johnson2014-06-091-0/+52
* Merge pull request #134 from Shopify/c_cursor•••C cursorBen Johnson2014-04-211-5/+5
|\
| * Add Cursor.Next() to C cursor.Ben Johnson2014-04-161-5/+5
* | Add Cursor.Bucket() function.•••This commit adds an accessor to the Cursor type to retrieve the Bucket that it was created from. Ben Johnson2014-04-161-0/+12
|/
* Return bucket from CreateBucket() functions.•••This commit changes the API for: Tx.CreateBucket() Tx.CreateBucketIfNotExists() Bucket.CreateBucket() Bucket.CreateBucketIfNotExists() These functions now return the *Bucket and error instead of just the error. Ben Johnson2014-04-151-15/+24
* Add nested buckets.•••This commit adds the ability to create buckets inside of other buckets. It also replaces the buckets page with a root bucket. Fixes #56. Ben Johnson2014-04-111-0/+307