MCPcopy
hub / github.com/sqlc-dev/sqlc / id

Function id

internal/sqltest/local/id.go:7–13  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

5var letterRunes = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
6
7func id() string {
8 b := make([]rune, 10)
9 for i := range b {
10 b[i] = letterRunes[rand.Intn(len(letterRunes))]
11 }
12 return string(b)
13}

Callers 2

MySQLFunction · 0.70
postgreSQLFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected