postgres

package
v1.0.0-...-167c205 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 28, 2017 License: BSD-3-Clause Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	MaxIntegralDigits   = 131072
	MaxFractionalDigits = 16383
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Decimal

type Decimal struct {
	*decimal.Big
	Round bool // round if the decimal exceeds the bounds for DECIMAL
}

Decimal is a PostgreSQL DECIMAL.

func (*Decimal) Scan

func (d *Decimal) Scan(val interface{}) error

Scan implements sql.Scanner.

func (*Decimal) Value

func (d *Decimal) Value() (driver.Value, error)

Value implements driver.Valuer.

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

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL