mirror of https://github.com/hashicorp/consul
state: use addNamespaceIndex again
parent
af5c8e6243
commit
8591feb58a
|
@ -101,6 +101,12 @@ const null = "\x00"
|
|||
// indexBuilder is a buffer used to construct memdb index values.
|
||||
type indexBuilder bytes.Buffer
|
||||
|
||||
func newIndexBuilder(cap int) *indexBuilder {
|
||||
buff := make([]byte, 0, cap)
|
||||
b := bytes.NewBuffer(buff)
|
||||
return (*indexBuilder)(b)
|
||||
}
|
||||
|
||||
// String appends the string and a null terminator to the buffer.
|
||||
func (b *indexBuilder) String(v string) {
|
||||
(*bytes.Buffer)(b).WriteString(v)
|
||||
|
|
Loading…
Reference in New Issue