github.com/jackc/pgx/v5/pgtype.CompositeCodecField.Type (field)
12 uses
github.com/jackc/pgx/v5/pgtype (current package)
composite.go#L33: Type *Type
composite.go#L42: if !f.Type.Codec.FormatSupported(format) {
composite.go#L86: builder.AppendValue(field.Type.OID, getter.Index(i))
composite.go#L106: b.AppendValue(field.Type.OID, getter.Index(i))
composite.go#L146: fieldPlan := plan.m.PlanScan(field.Type.OID, BinaryFormatCode, fieldTarget)
composite.go#L148: return fmt.Errorf("unable to encode %v into OID %d in binary format", field, field.Type.OID)
composite.go#L185: fieldPlan := plan.m.PlanScan(field.Type.OID, TextFormatCode, fieldTarget)
composite.go#L187: return fmt.Errorf("unable to encode %v into OID %d in text format", field, field.Type.OID)
composite.go#L235: fieldPlan := m.PlanScan(c.Fields[i].Type.OID, TextFormatCode, &v)
composite.go#L237: return nil, fmt.Errorf("unable to scan OID %d in text format into %v", c.Fields[i].Type.OID, v)
github.com/jackc/pgx/v5
conn.go#L1420: fields = append(fields, pgtype.CompositeCodecField{Name: fieldName, Type: dt})
derived_types.go#L199: fields = append(fields, pgtype.CompositeCodecField{Name: fieldName, Type: dt})