Fix: Scan uint and uint64 ScanNumeric

fixes https://github.com/jackc/pgx/issues/1414
pull/1425/head
Jack Christensen 2022-12-05 20:34:46 -06:00
parent 88b373f9ee
commit f0a73424b1
2 changed files with 4 additions and 2 deletions

View File

@ -238,7 +238,7 @@ func (w *uint64Wrapper) ScanNumeric(v Numeric) error {
return fmt.Errorf("cannot scan %v into *uint64", bi.String())
}
*w = uint64Wrapper(v.Int.Uint64())
*w = uint64Wrapper(bi.Uint64())
return nil
}
@ -291,7 +291,7 @@ func (w *uintWrapper) ScanNumeric(v Numeric) error {
return fmt.Errorf("cannot scan %v into *uint", bi.String())
}
ui := v.Int.Uint64()
ui := bi.Uint64()
if math.MaxUint < ui {
return fmt.Errorf("cannot scan %v into *uint", ui)

View File

@ -110,8 +110,10 @@ func TestNumericCodec(t *testing.T) {
{int64(math.MinInt64 + 1), new(pgtype.Numeric), isExpectedEqNumeric(mustParseNumeric(t, strconv.FormatInt(math.MinInt64+1, 10)))},
{int64(math.MaxInt64), new(pgtype.Numeric), isExpectedEqNumeric(mustParseNumeric(t, strconv.FormatInt(math.MaxInt64, 10)))},
{int64(math.MaxInt64 - 1), new(pgtype.Numeric), isExpectedEqNumeric(mustParseNumeric(t, strconv.FormatInt(math.MaxInt64-1, 10)))},
{uint64(100), new(uint64), isExpectedEq(uint64(100))},
{uint64(math.MaxUint64), new(uint64), isExpectedEq(uint64(math.MaxUint64))},
{uint(math.MaxUint), new(uint), isExpectedEq(uint(math.MaxUint))},
{uint(100), new(uint), isExpectedEq(uint(100))},
{"1.23", new(string), isExpectedEq("1.23")},
{pgtype.Numeric{}, new(pgtype.Numeric), isExpectedEq(pgtype.Numeric{})},
{nil, new(pgtype.Numeric), isExpectedEq(pgtype.Numeric{})},