-
Type: Bug
-
Resolution: Fixed
-
Priority: Major - P3
-
Affects Version/s: None
-
Component/s: None
-
None
-
Minor Change
-
ALL
-
v6.0
-
QE 2022-09-05
Currently $add always use widest numerical type to do summation, then cast to date type if there's a date element in the array.
This is fine for all numeric types except date which could cause confusion:
[1.5 + date + 1.5] can be either date + 3 or date + 4, the later one comes from round(round(date + 1.5) + 1.5).
We should make the $add type left associate for date type, so when we are date to any number the result is casted to date, and following (right side) numbers are all added and casted to date type. code link
(We will not backport this change to 6.0 or earlier)
(this ticket is for classic engine, sbe change will be included in SERVER-67282)
- is related to
-
SERVER-67282 $add expression should not use DoubleDoubleSummation in SBE
- Closed