We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c97061 commit de75c70Copy full SHA for de75c70
sql/types/number_test.go
@@ -1239,7 +1239,6 @@ func TestConvertValueToUint64(t *testing.T) {
1239
1240
zeroDec := serializeDecimal(decimal.Zero)
1241
testDec := serializeDecimal(decimal.NewFromFloat(123.456))
1242
- minInt64Dec := serializeDecimal(decimal.NewFromInt(math.MinInt64))
1243
maxInt64Dec := serializeDecimal(decimal.NewFromInt(math.MaxInt64))
1244
1245
tests := []struct {
@@ -1621,14 +1620,6 @@ func TestConvertValueToUint64(t *testing.T) {
1621
1620
exp: 123,
1622
rng: sql.InRange,
1623
},
1624
- {
1625
- val: sql.Value{
1626
- Val: minInt64Dec,
1627
- Typ: sqltypes.Decimal,
1628
- },
1629
- exp: math.MaxUint64,
1630
- rng: sql.OutOfRange,
1631
1632
{
1633
val: sql.Value{
1634
Val: maxInt64Dec,
0 commit comments