pull in latest go-kv, go-cache (#1530)

Signed-off-by: kim <grufwub@gmail.com>
This commit is contained in:
kim
2023-02-19 09:36:38 +00:00
committed by GitHub
parent a0068e8915
commit 51c156cca1
16 changed files with 451 additions and 224 deletions

View File

@@ -75,7 +75,7 @@ type Field struct {
// Key returns the formatted key string of this Field.
func (f Field) Key() string {
buf := byteutil.Buffer{B: make([]byte, 0, bufsize/2)}
AppendQuoteKey(&buf, f.K)
AppendQuote(&buf, f.K)
return buf.String()
}