github.com/jackc/pgx/v5/pgtype.Map.TypeForOID (method)
16 uses
github.com/jackc/pgx/v5/pgtype (current package)
pgtype.go#L298: func (m *Map) TypeForOID(oid uint32) (*Type, bool) {
pgtype.go#L475: if t, ok := plan.m.TypeForOID(plan.oid); ok {
pgtype.go#L1104: if dataType, ok := m.TypeForOID(oid); ok {
pgtype.go#L1236: if dataType, ok := m.TypeForOID(oid); ok {
pgtype.go#L1940: if t, ok := m.TypeForOID(oid); ok {
github.com/jackc/pgx/v5
conn.go#L1312: dt, ok := c.TypeMap().TypeForOID(elementOID)
conn.go#L1326: dt, ok := c.TypeMap().TypeForOID(typbasetype)
conn.go#L1340: dt, ok := c.TypeMap().TypeForOID(elementOID)
conn.go#L1352: dt, ok := c.TypeMap().TypeForOID(elementOID)
conn.go#L1416: dt, ok := c.TypeMap().TypeForOID(fieldOID)
derived_types.go#L187: dt, ok := m.TypeForOID(ti.Typelem)
derived_types.go#L195: dt, ok := m.TypeForOID(ti.Atttypids[i])
derived_types.go#L204: dt, ok := m.TypeForOID(ti.Typbasetype)
derived_types.go#L213: dt, ok := m.TypeForOID(ti.Rngsubtype)
derived_types.go#L220: dt, ok := m.TypeForOID(ti.Rngtypid)
rows.go#L308: if dt, ok := rows.typeMap.TypeForOID(fd.DataTypeOID); ok {