Yifeng-Sigma opened a new issue, #36998:
URL: https://github.com/apache/arrow/issues/36998
### Describe the bug, including details regarding any error messages,
version, and platform.
```
func TestDivide (t *testing. T) {
builder := array.NewInt64Builder(memory.NewGoAllocator())
builder.Append(12345000000000000)
arr := builder.NewArray()
_, err := compute.Divide(context.TODO(),
compute.ArithmeticOptions{NoCheckOverflow: false},
&compute.ArrayDatum{Value: arr.Data()},
compute.NewDatum(math.Pow10(int(16))))
if err != nil {
t.Fatal(err)
}
}
```
is giving me `invalid: integer value 12345000000000000 not in range:
-9007199254740992 to 9007199254740992`
### Component(s)
Go
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]