MCPcopy Create free account
hub / github.com/dolthub/doltgresql / randStringTimestamp

Function randStringTimestamp

postgres/parser/hlc/timestamp.pb.go:165–172  ·  view source on GitHub ↗
(r randyTimestamp)

Source from the content-addressed store, hash-verified

163 return rune(ru + 61)
164}
165func randStringTimestamp(r randyTimestamp) string {
166 v1 := r.Intn(100)
167 tmps := make([]rune, v1)
168 for i := 0; i < v1; i++ {
169 tmps[i] = randUTF8RuneTimestamp(r)
170 }
171 return string(tmps)
172}
173func randUnrecognizedTimestamp(r randyTimestamp, maxFieldNumber int) (dAtA []byte) {
174 l := r.Intn(5)
175 for i := 0; i < l; i++ {

Callers

nothing calls this directly

Calls 2

randUTF8RuneTimestampFunction · 0.85
IntnMethod · 0.65

Tested by

no test coverage detected