Documentation
¶
Index ¶
Constants ¶
View Source
const ( MaxIntegralDigits = 131072 // max digits before the decimal point MaxFractionalDigits = 16383 // max digits after the decimal point )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LengthError ¶
type LengthError struct { Part string // "integral" or "fractional" N int // length of invalid part // contains filtered or unexported fields }
LengthError is returned from Decimal.Value when either its integral (digits before the decimal point) or fractional (digits after the decimal point) parts are too long for PostgresSQL.
func (LengthError) Error ¶
func (e LengthError) Error() string
type NullDecimal ¶
func (*NullDecimal) Scan ¶
func (n *NullDecimal) Scan(value interface{}) error
Scan implements the Scanner interface.
Click to show internal directories.
Click to hide internal directories.