Files
gocqlx/qb/qb.go
Michał Matczuk 5db5de8822 qb: insert
2017-07-27 15:08:09 +02:00

15 lines
226 B
Go

package qb
import (
"strings"
)
// placeholders returns a string with count ? placeholders joined with commas.
func placeholders(count int) string {
if count < 1 {
return ""
}
return strings.Repeat(",?", count)[1:]
}