Opened 11 years ago
Closed 10 years ago
#658 closed defect (fixed)
Silent division by zero
Reported by: | Veranika Liaukevich | Owned by: | Veranika Liaukevich |
---|---|---|---|
Priority: | minor | Milestone: | 9.0.x |
Component: | catalogmgr | Version: | development |
Keywords: | Cc: | Dimitar Misev, Peter Baumann, Alex Dumitru, Vlad Merticariu | |
Complexity: | Easy |
Description
In rasdaman all the division classes (for integer, doubles) in the query
language silently return 0 in case of the division by zero, which contradict SQL standard and common programming languages behavior.
Change History (11)
comment:1 by , 10 years ago
comment:3 by , 10 years ago
As far as I remember, there was a discussion about how to handle such cases, but we did not decide anything. For floating-point numbers IEEE-754 specifies the result (infinity or nan), and C++ already implements this, so we can leave the code as it is.
It is not clear what to do in case of integers. 0? Exception? NULL, as null values support was recently added? I personally prefer the latter option.
comment:4 by , 10 years ago
Cc: | added |
---|
SQL standard defines that both regular division and modulo operation should raise an exception of the divisor is equal to zero (SQL:2011, Part 2: Foundations, pages 273, 280).
I tried to find out how different DBMSs treat division by zero:
DBMS | 2/0 | 2/0.0 | mod(2,0) |
---|---|---|---|
mysql | NULL | NULL | NULL |
sqlite | NULL | NULL | NULL |
postgres | exception | exception | exception |
MS SQL server | exception | exception | exception |
DB2 | exception | exception | 1 |
oracle | exception | exception | 2 |
(It is possible to set a flag changing MySQL behavior).
I propose to raise exceptions as well, division by zero is just wrong after all. And let's do the same also for floating-point division operation, different behavior is only going to confuse users.
comment:5 by , 10 years ago
solid work, thanks for investigating!
I suggest to follow Veranika's line of argument, any objection/opinions?
comment:6 by , 10 years ago
Cc: | added |
---|
Yesterday there was a discussion about consequences of the enabling "throw exceptions on division by zero". The problem is that almost every array has some zero values, so almost every division operation would end with an exception.
Some ideas with their pros and cons:
- Use
"case when b = 0 then ... else a/b"
statement- pros: works in the same way for all situations
- cons:
- users need to write this long construction every time
- performance problem: the "case" statement need to be executed for every single element of an array
- No exceptions, just return 0, NULL, NaN, etc.
- pros: no exceptions
- cons:
- NaN works only for doubles
- NULL values should be defined in order to be used
- zero only masks an error of division by zero. Additionally, is there a reason why to return zero, not the maximum/minimum value?
- log(0) throws an exception, why division should behave differently in a similar situation?
- performance problem: all "if (divisor == 0)" checks make the code inefficiently executable on GPU
- Introduce a non-standard extension keyword like
"select /*noexc*/ a/b"
, which tells the engine not to throw exceptions- pros: user controls whether to throw exceptions
- cons: what to return as the result of division? Goto idea 2.
- There is a SQL expression
NULLIF(arg0, arg1)
, which returns NULL if both arguments are equal and the first argument otherwise. It could be used to prevent div-by-zero errors:"select a / NULLIF(b, 0)"
.- pros: user controls whether to throw exceptions or return NULL
- cons: NULL values need to be defined
- Introduce a non-standard operator, in which user defines which value to return instead of errors. E.g.:
NOEXC(a/b, 0)
, there the first argument is the expression to evaluate, the second is the expression to return in case of errors.- pros:
- user controls whether to throw exceptions or what to return otherwise; nulls as return values are still possible
- the syntax is much shorter and cleaner than
"case when..."
- cons: possible performance issue: this operator needs to be evaluated for every single cell of an array, but it is a simple
"try...catch..."
- pros:
Discussion of the written above ideas is highly appreciated.
comment:7 by , 10 years ago
Behavior on division by zero can be changed using seterr.
..
When both x1 and x2 are of an integer type, divide will return integers and throw away the fractional part. Moreover, division by zero always yields zero in integer arithmetic.
- so integer division by zero sets 0, floating point corresponds to IEEE 754 which results in ± inf or nan, for which we don't need to care as C++ implements it already
- it's similar in Matlab, except Matlab automatically converts to float on integer division and correspondingly returns inf/nan
- similar in R as far as I could see
From wikipedia on integer division:
Integer division by zero is usually handled differently from floating point since there is no integer representation for the result. Some processors generate an exception when an attempt is made to divide an integer by zero, although others will simply continue and generate an incorrect result for the division. The result depends on how division is implemented, and can either be zero, or sometimes the largest possible integer.
comment:8 by , 10 years ago
I'd vote for this solution:
- If there are null values defined, set null value as result
- Otherwise
- float: simply execute a/b in c++, result is ± inf or nan as defined by IEEE 754
- integer: set 0, as the default null value in rasdaman
- this only comes up when using the div operator, as the '/' operator always returns float
- Optionally allow to enable exceptions instead in some way
- Switch statement can always be used to explicitly change the default behavior defined by 1-2
comment:9 by , 10 years ago
following discussion, consensus is that:
- if:
float: simply execute a/b in c++, result is ± inf or nan as defined by IEEE 754
integer: throw exception
this only comes up when using the div operator, as the '/' operator always returns float
- Switch statement can always be used to explicitly change the default behavior defined by 1-2
comment:10 by , 10 years ago
Fixed in changeset:995936 and changeset:d6be96. The documentation still needs to be updated.
Is this ticket still relevant?