MCPcopy Index your code
hub / github.com/coder/coder / nullStringPtr

Function nullStringPtr

coderd/database/db2sdk/db2sdk.go:1685–1691  ·  view source on GitHub ↗
(v sql.NullString)

Source from the content-addressed store, hash-verified

1683}
1684
1685func nullStringPtr(v sql.NullString) *string {
1686 if !v.Valid {
1687 return nil
1688 }
1689 value := v.String
1690 return &value
1691}
1692
1693func nullTimePtr(v sql.NullTime) *time.Time {
1694 if !v.Valid {

Callers 2

ChatDebugRunSummaryFunction · 0.85
ChatDebugRunDetailFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected