Improve error message when failing to scan a NULL::json

v5-dev
Jack Christensen 2022-08-22 20:56:36 -05:00
parent 0d5d8e0137
commit 2e73d1e8ee
2 changed files with 38 additions and 0 deletions

View File

@ -3,6 +3,7 @@ package pgtype
import (
"database/sql/driver"
"encoding/json"
"fmt"
"reflect"
)
@ -129,6 +130,8 @@ func (scanPlanJSONToJSONUnmarshal) Scan(src []byte, dst any) error {
return nil
}
}
return fmt.Errorf("cannot scan null into %T", dst)
}
return json.Unmarshal(src, dst)

View File

@ -4,7 +4,9 @@ import (
"context"
"testing"
pgx "github.com/jackc/pgx/v5"
"github.com/jackc/pgx/v5/pgxtest"
"github.com/stretchr/testify/require"
)
func isExpectedEqMap(a any) func(any) bool {
@ -58,3 +60,36 @@ func TestJSONCodec(t *testing.T) {
{jsonStruct{Name: "Adam", Age: 10}, new(jsonStruct), isExpectedEq(jsonStruct{Name: "Adam", Age: 10})},
})
}
// https://github.com/jackc/pgx/issues/1273#issuecomment-1221414648
func TestJSONCodecUnmarshalSQLNull(t *testing.T) {
defaultConnTestRunner.RunTest(context.Background(), t, func(ctx context.Context, t testing.TB, conn *pgx.Conn) {
// Slices are nilified
slice := []string{"foo", "bar", "baz"}
err := conn.QueryRow(ctx, "select null::json").Scan(&slice)
require.NoError(t, err)
require.Nil(t, slice)
// Maps are nilified
m := map[string]any{"foo": "bar"}
err = conn.QueryRow(ctx, "select null::json").Scan(&m)
require.NoError(t, err)
require.Nil(t, m)
// Pointer to pointer are nilified
n := 42
p := &n
err = conn.QueryRow(ctx, "select null::json").Scan(&p)
require.NoError(t, err)
require.Nil(t, p)
// A string cannot scan a NULL.
str := "foobar"
err = conn.QueryRow(ctx, "select null::json").Scan(&str)
require.EqualError(t, err, "can't scan into dest[0]: cannot scan null into *string")
// A non-string cannot scan a NULL.
err = conn.QueryRow(ctx, "select null::json").Scan(&n)
require.EqualError(t, err, "can't scan into dest[0]: cannot scan null into *int")
})
}