Details
Description
Insert the following measurements:
{x: Number(1.0)} |
{x: NumberLong(10)} |
In 5.0:
"control" : { |
"min" : { |
"x" : 1 |
},
|
"max" : { |
"x" : NumberLong(10) |
}
|
}
|
In 5.1/5.2:
"control" : { |
"min" : { |
"x" : 1 |
},
|
"max" : { |
"x" : 1 |
}
|
}
|
The bucket has both measurements in both binaries:
"data" : { |
"_id" ... |
"x" : { |
"0" : 1, |
"1" : NumberLong(10) |
},
|
"time" ... |
}
|
We'd want the same min/max summaries from 5.0 in 5.1/5.2, to let us know we have measurements ranging from 1 -> 10 in the bucket.
Attachments
Issue Links
- is caused by
-
SERVER-56717 Use faster value comparison for Timeseries MinMax store
-
- Closed
-