mirror of https://github.com/jackc/pgx.git
parent
c4ac6d810f
commit
e66ad1bcec
|
@ -1,6 +1,7 @@
|
||||||
package pgx
|
package pgx
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"database/sql/driver"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/jackc/pgx/v5/internal/anynil"
|
"github.com/jackc/pgx/v5/internal/anynil"
|
||||||
|
@ -181,6 +182,19 @@ func (eqb *ExtendedQueryBuilder) appendParamsForQueryExecModeExec(m *pgtype.Map,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if !ok {
|
||||||
|
var dv driver.Valuer
|
||||||
|
if dv, ok = arg.(driver.Valuer); ok {
|
||||||
|
v, err := dv.Value()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
dt, ok = m.TypeForValue(v)
|
||||||
|
if ok {
|
||||||
|
arg = v
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
if !ok {
|
if !ok {
|
||||||
var str fmt.Stringer
|
var str fmt.Stringer
|
||||||
if str, ok = arg.(fmt.Stringer); ok {
|
if str, ok = arg.(fmt.Stringer); ok {
|
||||||
|
|
|
@ -24,6 +24,12 @@ func (c JSONCodec) PlanEncode(m *Map, oid uint32, format int16, value any) Encod
|
||||||
return encodePlanJSONCodecEitherFormatString{}
|
return encodePlanJSONCodecEitherFormatString{}
|
||||||
case []byte:
|
case []byte:
|
||||||
return encodePlanJSONCodecEitherFormatByteSlice{}
|
return encodePlanJSONCodecEitherFormatByteSlice{}
|
||||||
|
|
||||||
|
// Cannot rely on driver.Valuer being handled later because anything can be marshalled.
|
||||||
|
//
|
||||||
|
// https://github.com/jackc/pgx/issues/1430
|
||||||
|
case driver.Valuer:
|
||||||
|
return &encodePlanDriverValuer{m: m, oid: oid, formatCode: format}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Because anything can be marshalled the normal wrapping in Map.PlanScan doesn't get a chance to run. So try the
|
// Because anything can be marshalled the normal wrapping in Map.PlanScan doesn't get a chance to run. So try the
|
||||||
|
|
|
@ -52,6 +52,9 @@ func TestJSONCodec(t *testing.T) {
|
||||||
|
|
||||||
// Test sql.Scanner. (https://github.com/jackc/pgx/issues/1418)
|
// Test sql.Scanner. (https://github.com/jackc/pgx/issues/1418)
|
||||||
{"42", new(sql.NullInt64), isExpectedEq(sql.NullInt64{Int64: 42, Valid: true})},
|
{"42", new(sql.NullInt64), isExpectedEq(sql.NullInt64{Int64: 42, Valid: true})},
|
||||||
|
|
||||||
|
// Test driver.Valuer. (https://github.com/jackc/pgx/issues/1430)
|
||||||
|
{sql.NullInt64{Int64: 42, Valid: true}, new(sql.NullInt64), isExpectedEq(sql.NullInt64{Int64: 42, Valid: true})},
|
||||||
})
|
})
|
||||||
|
|
||||||
pgxtest.RunValueRoundTripTests(context.Background(), t, defaultConnTestRunner, pgxtest.KnownOIDQueryExecModes, "json", []pgxtest.ValueRoundTripTest{
|
pgxtest.RunValueRoundTripTests(context.Background(), t, defaultConnTestRunner, pgxtest.KnownOIDQueryExecModes, "json", []pgxtest.ValueRoundTripTest{
|
||||||
|
|
Loading…
Reference in New Issue