MCPcopy Index your code
hub / github.com/netdata/netdata / valueToString

Function valueToString

src/go/plugin/go.d/pkg/sqlquery/query.go:58–64  ·  view source on GitHub ↗
(value any)

Source from the content-addressed store, hash-verified

56}
57
58func valueToString(value any) string {
59 v, ok := value.(*sql.NullString)
60 if !ok || !v.Valid {
61 return ""
62 }
63 return v.String
64}
65
66func makeValues(size int) []any {
67 vs := make([]any, size)

Callers 1

readRowsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…