MCPcopy
hub / github.com/github/gh-ost / buildPreparedValues

Function buildPreparedValues

go/sql/builder.go:69–75  ·  view source on GitHub ↗
(length int)

Source from the content-addressed store, hash-verified

67}
68
69func buildPreparedValues(length int) []string {
70 values := make([]string, length)
71 for i := 0; i < length; i++ {
72 values[i] = "?"
73 }
74 return values
75}
76
77func duplicateNames(names []string) []string {
78 duplicate := make([]string, len(names))

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…