diff --git a/pgtype/json_test.go b/pgtype/json_test.go index 6277fc8b..78bdc3a9 100644 --- a/pgtype/json_test.go +++ b/pgtype/json_test.go @@ -6,6 +6,7 @@ import ( "database/sql/driver" "encoding/json" "errors" + "fmt" "reflect" "testing" @@ -191,11 +192,15 @@ func TestJSONCodecUnmarshalSQLNull(t *testing.T) { // 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") + fieldName := "json" + if conn.PgConn().ParameterStatus("crdb_version") != "" { + fieldName = "jsonb" // Seems like CockroachDB treats json as jsonb. + } + require.EqualError(t, err, fmt.Sprintf("can't scan into dest[0] (col: %s): cannot scan NULL into *string", fieldName)) // 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") + require.EqualError(t, err, fmt.Sprintf("can't scan into dest[0] (col: %s): cannot scan NULL into *int", fieldName)) }) } diff --git a/pgtype/jsonb_test.go b/pgtype/jsonb_test.go index f34b3ad5..031cd376 100644 --- a/pgtype/jsonb_test.go +++ b/pgtype/jsonb_test.go @@ -66,11 +66,11 @@ func TestJSONBCodecUnmarshalSQLNull(t *testing.T) { // A string cannot scan a NULL. str := "foobar" err = conn.QueryRow(ctx, "select null::jsonb").Scan(&str) - require.EqualError(t, err, "can't scan into dest[0]: cannot scan NULL into *string") + require.EqualError(t, err, "can't scan into dest[0] (col: jsonb): cannot scan NULL into *string") // A non-string cannot scan a NULL. err = conn.QueryRow(ctx, "select null::jsonb").Scan(&n) - require.EqualError(t, err, "can't scan into dest[0]: cannot scan NULL into *int") + require.EqualError(t, err, "can't scan into dest[0] (col: jsonb): cannot scan NULL into *int") }) } diff --git a/pgtype/xml_test.go b/pgtype/xml_test.go index 0f755e96..de7de4d2 100644 --- a/pgtype/xml_test.go +++ b/pgtype/xml_test.go @@ -79,7 +79,7 @@ func TestXMLCodecUnmarshalSQLNull(t *testing.T) { // A string cannot scan a NULL. str := "foobar" err = conn.QueryRow(ctx, "select null::xml").Scan(&str) - assert.EqualError(t, err, "can't scan into dest[0]: cannot scan NULL into *string") + assert.EqualError(t, err, "can't scan into dest[0] (col: xml): cannot scan NULL into *string") }) } diff --git a/query_test.go b/query_test.go index a6a26ad7..2c841024 100644 --- a/query_test.go +++ b/query_test.go @@ -420,7 +420,7 @@ func TestConnQueryReadWrongTypeError(t *testing.T) { t.Fatal("Expected Rows to have an error after an improper read but it didn't") } - if rows.Err().Error() != "can't scan into dest[0]: cannot scan int4 (OID 23) in binary format into *time.Time" { + if rows.Err().Error() != "can't scan into dest[0] (col: n): cannot scan int4 (OID 23) in binary format into *time.Time" { t.Fatalf("Expected different Rows.Err(): %v", rows.Err()) } diff --git a/rows.go b/rows.go index f23625d4..268559ce 100644 --- a/rows.go +++ b/rows.go @@ -272,7 +272,7 @@ func (rows *baseRows) Scan(dest ...any) error { err := rows.scanPlans[i].Scan(values[i], dst) if err != nil { - err = ScanArgError{ColumnIndex: i, Err: err} + err = ScanArgError{ColumnIndex: i, FieldName: fieldDescriptions[i].Name, Err: err} rows.fatal(err) return err } @@ -334,11 +334,16 @@ func (rows *baseRows) Conn() *Conn { type ScanArgError struct { ColumnIndex int + FieldName string Err error } func (e ScanArgError) Error() string { - return fmt.Sprintf("can't scan into dest[%d]: %v", e.ColumnIndex, e.Err) + if e.FieldName == "?column?" { // Don't include the fieldname if it's unknown + return fmt.Sprintf("can't scan into dest[%d]: %v", e.ColumnIndex, e.Err) + } + + return fmt.Sprintf("can't scan into dest[%d] (col: %s): %v", e.ColumnIndex, e.FieldName, e.Err) } func (e ScanArgError) Unwrap() error { @@ -366,7 +371,7 @@ func ScanRow(typeMap *pgtype.Map, fieldDescriptions []pgconn.FieldDescription, v err := typeMap.Scan(fieldDescriptions[i].DataTypeOID, fieldDescriptions[i].Format, values[i], d) if err != nil { - return ScanArgError{ColumnIndex: i, Err: err} + return ScanArgError{ColumnIndex: i, FieldName: fieldDescriptions[i].Name, Err: err} } } diff --git a/values_test.go b/values_test.go index 132b79a2..01550c9c 100644 --- a/values_test.go +++ b/values_test.go @@ -3,6 +3,7 @@ package pgx_test import ( "bytes" "context" + "fmt" "net" "os" "reflect" @@ -215,7 +216,12 @@ func testJSONInt16ArrayFailureDueToOverflow(t *testing.T, conn *pgx.Conn, typena input := []int{1, 2, 234432} var output []int16 err := conn.QueryRow(context.Background(), "select $1::"+typename, input).Scan(&output) - if err == nil || err.Error() != "can't scan into dest[0]: json: cannot unmarshal number 234432 into Go value of type int16" { + fieldName := typename + if conn.PgConn().ParameterStatus("crdb_version") != "" && typename == "json" { + fieldName = "jsonb" // Seems like CockroachDB treats json as jsonb. + } + expectedMessage := fmt.Sprintf("can't scan into dest[0] (col: %s): json: cannot unmarshal number 234432 into Go value of type int16", fieldName) + if err == nil || err.Error() != expectedMessage { t.Errorf("%s: Expected *json.UnmarshalTypeError, but got %v", typename, err) } }