type github.com/jackc/pgtype.TID
17 uses
github.com/jackc/pgtype (current package)
pgtype.go#L308: ci.RegisterDataType(DataType{Value: &TID{}, Name: "tid", OID: TIDOID})
pgtype.go#L926: "tid": &TID{},
tid.go#L24: type TID struct {
tid.go#L30: func (dst *TID) Set(src interface{}) error {
tid.go#L34: func (dst TID) Get() interface{} {
tid.go#L45: func (src *TID) AssignTo(dst interface{}) error {
tid.go#L62: func (dst *TID) DecodeText(ci *ConnInfo, src []byte) error {
tid.go#L64: *dst = TID{Status: Null}
tid.go#L87: *dst = TID{BlockNumber: uint32(blockNumber), OffsetNumber: uint16(offsetNumber), Status: Present}
tid.go#L91: func (dst *TID) DecodeBinary(ci *ConnInfo, src []byte) error {
tid.go#L93: *dst = TID{Status: Null}
tid.go#L101: *dst = TID{
tid.go#L109: func (src TID) EncodeText(ci *ConnInfo, buf []byte) ([]byte, error) {
tid.go#L121: func (src TID) EncodeBinary(ci *ConnInfo, buf []byte) ([]byte, error) {
tid.go#L135: func (dst *TID) Scan(src interface{}) error {
tid.go#L137: *dst = TID{Status: Null}
tid.go#L154: func (src TID) Value() (driver.Value, error) {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |