I'm running Hive 1.1.0 and see that for two bigint
columns, active_users
and inactive_users
, SUM(active_users + inactive_users)
< SUM(active_users) + SUM(inactive_users)
.
Why is that the case, given it should be a simple addition of integers?