2
0

remove dead line

This commit is contained in:
Eshton Robateau
2023-11-24 07:29:48 +08:00
committed by Jack Christensen
parent 95b2f85e60
commit 9927e14bbf
-1
View File
@@ -762,7 +762,6 @@ 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())))
}
}