Fix scan to pointer to pointer to renamed type

refs https://github.com/jackc/pgx/issues/1326
pull/1332/head
Jack Christensen 2022-10-08 08:10:40 -05:00
parent f803c790d0
commit 5655f9d593
2 changed files with 18 additions and 1 deletions

View File

@ -659,7 +659,12 @@ func TryFindUnderlyingTypeScanPlan(dst any) (plan WrappedScanPlanNextSetter, nex
dstValue := reflect.ValueOf(dst)
if dstValue.Kind() == reflect.Ptr {
elemValue := dstValue.Elem()
var elemValue reflect.Value
if dstValue.IsNil() {
elemValue = reflect.New(dstValue.Type().Elem()).Elem()
} else {
elemValue = dstValue.Elem()
}
nextDstType := elemKindToPointerTypes[elemValue.Kind()]
if nextDstType == nil && elemValue.Kind() == reflect.Slice {
if elemValue.Type().Elem().Kind() == reflect.Uint8 {

View File

@ -317,6 +317,18 @@ func TestMapEncodeBinaryFormatDatabaseValuerThatReturnsString(t *testing.T) {
require.Equal(t, []byte{0, 0, 0, 42}, buf)
}
// https://github.com/jackc/pgx/issues/1326
func TestMapScanPointerToRenamedType(t *testing.T) {
srcBuf := []byte("foo")
m := pgtype.NewMap()
var rs *_string
err := m.Scan(pgtype.TextOID, pgx.TextFormatCode, srcBuf, &rs)
assert.NoError(t, err)
require.NotNil(t, rs)
assert.Equal(t, "foo", string(*rs))
}
func BenchmarkMapScanInt4IntoBinaryDecoder(b *testing.B) {
m := pgtype.NewMap()
src := []byte{0, 0, 0, 42}