type github.com/jackc/pgx/v5/pgtype.PathCodec
9 uses
github.com/jackc/pgx/v5/pgtype (current package)
path.go#L60: buf, err := PathCodec{}.PlanEncode(nil, 0, TextFormatCode, path).Encode(path, nil)
path.go#L68: type PathCodec struct{}
path.go#L70: func (PathCodec) FormatSupported(format int16) bool {
path.go#L74: func (PathCodec) PreferredFormat() int16 {
path.go#L78: func (PathCodec) PlanEncode(m *Map, oid uint32, format int16, value any) EncodePlan {
path.go#L158: func (PathCodec) PlanScan(m *Map, oid uint32, format int16, target any) ScanPlan {
path.go#L258: func (c PathCodec) DecodeDatabaseSQLValue(m *Map, oid uint32, format int16, src []byte) (driver.Value, error) {
path.go#L262: func (c PathCodec) DecodeValue(m *Map, oid uint32, format int16, src []byte) (any, error) {
pgtype_default.go#L78: defaultMap.RegisterType(&Type{Name: "path", OID: PathOID, Codec: PathCodec{}})