mirror of https://github.com/jackc/pgx.git
parent
07b32353a4
commit
f6feb39655
|
@ -177,6 +177,26 @@ func TestConnQueryValues(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// https://github.com/jackc/pgx/issues/666
|
||||||
|
func TestConnQueryValuesWhenUnableToDecode(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
|
||||||
|
conn := mustConnectString(t, os.Getenv("PGX_TEST_DATABASE"))
|
||||||
|
defer closeConn(t, conn)
|
||||||
|
|
||||||
|
// Note that this relies on pgtype.Record not supporting the text protocol. This seems safe as it is impossible to
|
||||||
|
// decode the text protocol because unlike the binary protocal there is no way to determine the OIDs of the elements.
|
||||||
|
rows, err := conn.Query(context.Background(), "select (array[1::oid], null)", pgx.QueryResultFormats{pgx.TextFormatCode})
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer rows.Close()
|
||||||
|
|
||||||
|
require.True(t, rows.Next())
|
||||||
|
|
||||||
|
values, err := rows.Values()
|
||||||
|
require.NoError(t, err)
|
||||||
|
require.Equal(t, "({1},)", values[0])
|
||||||
|
}
|
||||||
|
|
||||||
// https://github.com/jackc/pgx/issues/478
|
// https://github.com/jackc/pgx/issues/478
|
||||||
func TestConnQueryReadRowMultipleTimes(t *testing.T) {
|
func TestConnQueryReadRowMultipleTimes(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
|
|
8
rows.go
8
rows.go
|
@ -214,8 +214,8 @@ func (rows *connRows) Values() ([]interface{}, error) {
|
||||||
|
|
||||||
switch fd.Format {
|
switch fd.Format {
|
||||||
case TextFormatCode:
|
case TextFormatCode:
|
||||||
decoder := value.(pgtype.TextDecoder)
|
decoder, ok := value.(pgtype.TextDecoder)
|
||||||
if decoder == nil {
|
if !ok {
|
||||||
decoder = &pgtype.GenericText{}
|
decoder = &pgtype.GenericText{}
|
||||||
}
|
}
|
||||||
err := decoder.DecodeText(rows.connInfo, buf)
|
err := decoder.DecodeText(rows.connInfo, buf)
|
||||||
|
@ -224,8 +224,8 @@ func (rows *connRows) Values() ([]interface{}, error) {
|
||||||
}
|
}
|
||||||
values = append(values, decoder.(pgtype.Value).Get())
|
values = append(values, decoder.(pgtype.Value).Get())
|
||||||
case BinaryFormatCode:
|
case BinaryFormatCode:
|
||||||
decoder := value.(pgtype.BinaryDecoder)
|
decoder, ok := value.(pgtype.BinaryDecoder)
|
||||||
if decoder == nil {
|
if !ok {
|
||||||
decoder = &pgtype.GenericBinary{}
|
decoder = &pgtype.GenericBinary{}
|
||||||
}
|
}
|
||||||
err := decoder.DecodeBinary(rows.connInfo, buf)
|
err := decoder.DecodeBinary(rows.connInfo, buf)
|
||||||
|
|
Loading…
Reference in New Issue