XMLCodec: fix DecodeValue to return a []byte

Previously, DecodeValue would always return nil with the default
Unmarshal function.

fixes https://github.com/jackc/pgx/issues/2227
pull/2228/head
Jack Christensen 2025-01-11 10:47:57 -06:00
parent e87760682f
commit 329cb45913
2 changed files with 32 additions and 3 deletions

View File

@ -192,7 +192,7 @@ func (c *XMLCodec) DecodeValue(m *Map, oid uint32, format int16, src []byte) (an
return nil, nil return nil, nil
} }
var dst any dstBuf := make([]byte, len(src))
err := c.Unmarshal(src, &dst) copy(dstBuf, src)
return dst, err return dstBuf, nil
} }

View File

@ -97,3 +97,32 @@ func TestXMLCodecPointerToPointerToString(t *testing.T) {
require.Nil(t, s) require.Nil(t, s)
}) })
} }
func TestXMLCodecDecodeValue(t *testing.T) {
skipCockroachDB(t, "CockroachDB does not support XML.")
defaultConnTestRunner.RunTest(context.Background(), t, func(ctx context.Context, _ testing.TB, conn *pgx.Conn) {
for _, tt := range []struct {
sql string
expected any
}{
{
sql: `select '<foo>bar</foo>'::xml`,
expected: []byte("<foo>bar</foo>"),
},
} {
t.Run(tt.sql, func(t *testing.T) {
rows, err := conn.Query(ctx, tt.sql)
require.NoError(t, err)
for rows.Next() {
values, err := rows.Values()
require.NoError(t, err)
require.Len(t, values, 1)
require.Equal(t, tt.expected, values[0])
}
require.NoError(t, rows.Err())
})
}
})
}