Integer overflows
Content
When multiplying two integers, the result may exceed the maximum integer length limit
How to solve
- cast one of the integers to type double
FP Console Output
bigint multiplication overflow: 715932 * 24403000000000
Code Example
cast( 715932 as double )* 24403000000000
Updated about 2 years ago