pull/2136/head
merlin 2024-10-01 12:53:07 +03:00
parent aabed18db8
commit efc2c9ff44
No known key found for this signature in database
GPG Key ID: 7EDDCEA6A90062E0
1 changed files with 19 additions and 1 deletions

View File

@ -6,6 +6,7 @@ import (
"fmt"
"strconv"
"strings"
"sync"
"time"
"unicode/utf8"
)
@ -24,9 +25,26 @@ type Query struct {
// https://github.com/jackc/pgx/issues/1380
const replacementcharacterwidth = 3
var bufPool = &sync.Pool{}
func getBuf() *bytes.Buffer {
buf, _ := bufPool.Get().(*bytes.Buffer)
if buf == nil {
buf = &bytes.Buffer{}
}
return buf
}
func putBuf(buf *bytes.Buffer) {
buf.Reset()
bufPool.Put(buf)
}
func (q *Query) Sanitize(args ...any) (string, error) {
argUse := make([]bool, len(args))
buf := &bytes.Buffer{}
buf := getBuf()
defer putBuf(buf)
for _, part := range q.Parts {
var str string