export query.Placeholders

This commit is contained in:
Alex Grintsvayg 2020-07-10 14:01:40 -04:00
parent f1d8bc0ffc
commit fcade74753
No known key found for this signature in database
GPG key ID: AEB3F089F86A22B5

View file

@ -87,11 +87,11 @@ func InterpolateParams(query string, args ...interface{}) (string, error) {
// Qs is a shortcut for one group of positional placeholders // Qs is a shortcut for one group of positional placeholders
func Qs(count int) string { func Qs(count int) string {
return placeholders(false, count, 1, 1) return Placeholders(false, count, 1, 1)
} }
// placeholders creates indexed or positional placeholders, in groups, with different starts // placeholders creates indexed or positional placeholders, in groups, with different starts
func placeholders(indexPlaceholders bool, count int, start int, group int) string { func Placeholders(indexPlaceholders bool, count int, start int, group int) string {
buf := bytes.Buffer{} buf := bytes.Buffer{}
if start == 0 || group == 0 { if start == 0 || group == 0 {