how divided by 0 is handeled by Safe division in server expression.
we have a server expression where for branch_data.actual_quantity = 0 then the server expression output is incorrect.
least(safe_division(abs(nvl(sum(branch_data.actual_quantity),0) - nvl(sum(branch_data.utc_final_fc_lag_13),0)), nvl(sum(branch_data.actual_quantity),0),0),1)
So I want to know if branch_data.actual_quantity = 0 then what would be the output given by Safe_division. how will it handle the scenario of divided by 0 cases.
Regards,
Meraj