We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9b79a3e + a3465d7 commit e6b9536Copy full SHA for e6b9536
iter_float.go
@@ -288,6 +288,9 @@ non_decimal_loop:
288
return iter.readFloat64SlowPath()
289
}
290
value = (value << 3) + (value << 1) + uint64(ind)
291
+ if value > maxFloat64 {
292
+ return iter.readFloat64SlowPath()
293
+ }
294
295
296
iter_int.go
@@ -9,6 +9,7 @@ var intDigits []int8
9
10
const uint32SafeToMultiply10 = uint32(0xffffffff)/10 - 1
11
const uint64SafeToMultiple10 = uint64(0xffffffffffffffff)/10 - 1
12
+const maxFloat64 = 1<<53 - 1
13
14
func init() {
15
intDigits = make([]int8, 256)
0 commit comments