aboutsummaryrefslogtreecommitdiff
path: root/cursor_test.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #134 from Shopify/c_cursorBen Johnson2014-04-211-5/+5
|\ | | | | C cursor
| * Add Cursor.Next() to C cursor.Ben Johnson2014-04-161-5/+5
| |
* | Add Cursor.Bucket() function.Ben Johnson2014-04-161-0/+12
|/ | | | | This commit adds an accessor to the Cursor type to retrieve the Bucket that it was created from.
* Return bucket from CreateBucket() functions.Ben Johnson2014-04-151-15/+24
| | | | | | | | | | | 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.
* Add nested buckets.Ben Johnson2014-04-111-0/+307
This commit adds the ability to create buckets inside of other buckets. It also replaces the buckets page with a root bucket. Fixes #56.