Fix Tx.Buckets() sort order.

@tv42 reported an issue with bucket names returning incorrectly. Not sure if
this fixes the issue but it is necessary anyway.
pull/34/head
Ben Johnson 2014-03-13 15:08:59 -06:00
parent fdd7f2162e
commit 62cf02e21a
2 changed files with 7 additions and 0 deletions

View File

@ -154,3 +154,9 @@ type BucketStat struct {
KeyCount int
MaxDepth int
}
type bucketsByName []*Bucket
func (s bucketsByName) Len() int { return len(s) }
func (s bucketsByName) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
func (s bucketsByName) Less(i, j int) bool { return s[i].name < s[j].name }

1
tx.go
View File

@ -89,6 +89,7 @@ func (t *Tx) Buckets() []*Bucket {
}
buckets = append(buckets, bucket)
}
sort.Sort(bucketsByName(buckets))
return buckets
}