MCPcopy Create free account
hub / github.com/cockroachdb/apd / Value

Method Value

decimal.go:834–839  ·  view source on GitHub ↗

Value implements the database/sql/driver.Valuer interface.

()

Source from the content-addressed store, hash-verified

832
833// Value implements the database/sql/driver.Valuer interface.
834func (nd NullDecimal) Value() (driver.Value, error) {
835 if !nd.Valid {
836 return nil, nil
837 }
838 return nd.Decimal.Value()
839}

Callers

nothing calls this directly

Calls 1

ValueMethod · 0.45

Tested by

no test coverage detected