type github.com/jackc/pgtype.Timestamptz

45 uses

	github.com/jackc/pgtype (current package)
		pgtype.go#L311: 	ci.RegisterDataType(DataType{Value: &Timestamptz{}, Name: "timestamptz", OID: TimestamptzOID})
		pgtype.go#L928: 		"timestamptz":  &Timestamptz{},
		timestamptz.go#L23: type Timestamptz struct {
		timestamptz.go#L29: func (dst *Timestamptz) Set(src interface{}) error {
		timestamptz.go#L31: 		*dst = Timestamptz{Status: Null}
		timestamptz.go#L44: 		*dst = Timestamptz{Time: value, Status: Present}
		timestamptz.go#L47: 			*dst = Timestamptz{Status: Null}
		timestamptz.go#L52: 		*dst = Timestamptz{InfinityModifier: value, Status: Present}
		timestamptz.go#L63: func (dst Timestamptz) Get() interface{} {
		timestamptz.go#L77: func (src *Timestamptz) AssignTo(dst interface{}) error {
		timestamptz.go#L100: func (dst *Timestamptz) DecodeText(ci *ConnInfo, src []byte) error {
		timestamptz.go#L102: 		*dst = Timestamptz{Status: Null}
		timestamptz.go#L109: 		*dst = Timestamptz{Status: Present, InfinityModifier: Infinity}
		timestamptz.go#L111: 		*dst = Timestamptz{Status: Present, InfinityModifier: -Infinity}
		timestamptz.go#L127: 		*dst = Timestamptz{Time: tim, Status: Present}
		timestamptz.go#L133: func (dst *Timestamptz) DecodeBinary(ci *ConnInfo, src []byte) error {
		timestamptz.go#L135: 		*dst = Timestamptz{Status: Null}
		timestamptz.go#L147: 		*dst = Timestamptz{Status: Present, InfinityModifier: Infinity}
		timestamptz.go#L149: 		*dst = Timestamptz{Status: Present, InfinityModifier: -Infinity}
		timestamptz.go#L153: 		*dst = Timestamptz{Time: tim, Status: Present}
		timestamptz.go#L159: func (src Timestamptz) EncodeText(ci *ConnInfo, buf []byte) ([]byte, error) {
		timestamptz.go#L181: func (src Timestamptz) EncodeBinary(ci *ConnInfo, buf []byte) ([]byte, error) {
		timestamptz.go#L204: func (dst *Timestamptz) Scan(src interface{}) error {
		timestamptz.go#L206: 		*dst = Timestamptz{Status: Null}
		timestamptz.go#L218: 		*dst = Timestamptz{Time: src, Status: Present}
		timestamptz.go#L226: func (src Timestamptz) Value() (driver.Value, error) {
		timestamptz.go#L240: func (src Timestamptz) MarshalJSON() ([]byte, error) {
		timestamptz.go#L266: func (dst *Timestamptz) UnmarshalJSON(b []byte) error {
		timestamptz.go#L274: 		*dst = Timestamptz{Status: Null}
		timestamptz.go#L280: 		*dst = Timestamptz{Status: Present, InfinityModifier: Infinity}
		timestamptz.go#L282: 		*dst = Timestamptz{Status: Present, InfinityModifier: -Infinity}
		timestamptz.go#L290: 		*dst = Timestamptz{Time: tim, Status: Present}
		timestamptz_array.go#L16: 	Elements   []Timestamptz
		timestamptz_array.go#L44: 			elements := make([]Timestamptz, len(value))
		timestamptz_array.go#L63: 			elements := make([]Timestamptz, len(value))
		timestamptz_array.go#L76: 	case []Timestamptz:
		timestamptz_array.go#L114: 			Elements:   make([]Timestamptz, elementsLength),
		timestamptz_array.go#L131: 				dst.Elements = make([]Timestamptz, elementsLength)
		timestamptz_array.go#L321: 	var elements []Timestamptz
		timestamptz_array.go#L324: 		elements = make([]Timestamptz, len(uta.Elements))
		timestamptz_array.go#L327: 			var elem Timestamptz
		timestamptz_array.go#L368: 	elements := make([]Timestamptz, elementCount)
		tstzrange.go#L11: 	Lower     Timestamptz
		tstzrange.go#L12: 	Upper     Timestamptz

	github.com/jackc/pgx/v4/stdlib
		sql.go#L648: 				var d pgtype.Timestamptz