type github.com/jackc/pgx/v5/pgtype.PathCodec
9 uses
github.com/jackc/pgx/v5/pgtype (current package)
path.go#L59: buf, err := PathCodec{}.PlanEncode(nil, 0, TextFormatCode, path).Encode(path, nil)
path.go#L67: type PathCodec struct{}
path.go#L69: func (PathCodec) FormatSupported(format int16) bool {
path.go#L73: func (PathCodec) PreferredFormat() int16 {
path.go#L77: func (PathCodec) PlanEncode(m *Map, oid uint32, format int16, value any) EncodePlan {
path.go#L157: func (PathCodec) PlanScan(m *Map, oid uint32, format int16, target any) ScanPlan {
path.go#L265: func (c PathCodec) DecodeDatabaseSQLValue(m *Map, oid uint32, format int16, src []byte) (driver.Value, error) {
path.go#L269: 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{}})