MCPcopy
hub / github.com/helm/helm / SQL

Struct SQL

pkg/storage/driver/sql.go:89–95  ·  view source on GitHub ↗

SQL is the sql storage driver implementation.

Source from the content-addressed store, hash-verified

87
88// SQL is the sql storage driver implementation.
89type SQL struct {
90 db *sqlx.DB
91 namespace string
92 statementBuilder sq.StatementBuilderType
93 // Embed a LogHolder to provide logger functionality
94 logging.LogHolder
95}
96
97// Name returns the name of the driver.
98func (s *SQL) Name() string {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected