bitsize largest option is 64

pull/1835/head
Eshton Robateau 2023-11-24 07:39:08 +08:00 committed by Jack Christensen
parent 905f252667
commit 12582a0fd4
1 changed files with 1 additions and 1 deletions

View File

@ -762,7 +762,7 @@ func (scanPlanTextAnyToNumericScanner) Scan(src []byte, dst any) error {
if strings.ContainsAny(string(src), "eE") {
if bigF, ok := new(big.Float).SetString(string(src)); ok {
smallF, _ := bigF.Float64()
src = []byte(strconv.FormatFloat(smallF, 'f', -1, int(bigF.Prec())))
src = []byte(strconv.FormatFloat(smallF, 'f', -1, 64))
}
}