You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the Store operator and an integer value is outside the value range of a 32 bit int (i.e. smaller than -2³¹ = -2.147.483.648 or bigger than 2³¹-1 = 2.147.483.647), the integer overflows and the smallest/largest possible number is saved in the repository. This happens silently, without raising an error.
Expected behaviour would be to detect if the number is outside the bounds of a 32 bit int and either:
use a 64 bit int instead, or
throw an error
EDIT: This is present in Rapidminer Studio 7.2.001, but probably also in 7.4.
The text was updated successfully, but these errors were encountered:
When using the
Store
operator and an integer value is outside the value range of a 32 bitint
(i.e. smaller than -2³¹ = -2.147.483.648 or bigger than 2³¹-1 = 2.147.483.647), the integer overflows and the smallest/largest possible number is saved in the repository. This happens silently, without raising an error.Expected behaviour would be to detect if the number is outside the bounds of a 32 bit
int
and either:int
instead, orEDIT: This is present in Rapidminer Studio 7.2.001, but probably also in 7.4.
The text was updated successfully, but these errors were encountered: