fix preallocations of quoted string

pull/2136/head
merlin 2024-10-20 18:08:23 +03:00
parent 057937db27
commit 120c89fe0d
No known key found for this signature in database
GPG Key ID: 7EDDCEA6A90062E0
2 changed files with 2 additions and 1 deletions

View File

@ -151,7 +151,7 @@ func QuoteString(dst []byte, str string) []byte {
dst = append(dst, quote...)
p := slices.Grow(dst[len(dst):], len(str)+2*n)
p := slices.Grow(dst[len(dst):], 2*len(quote)+len(str)+2*n)
for len(str) > 0 {
i := strings.Index(str, quote)

View File

@ -1,6 +1,7 @@
package sanitize_test
import (
"strings"
"testing"
"github.com/jackc/pgx/v5/internal/sanitize"