Details
-
Bug
-
Status: Closed
-
Major - P3
-
Resolution: Duplicate
-
3.2.0, 3.4.0, 3.5.13
-
None
-
None
-
ALL
Description
It looks like the shell is using some sort of string comparison for Timestamps that have the same ts but different offset, instead of a numeric comparison:
> Timestamp(1506527690, 11) > Timestamp(1506527690, 9)
|
false
|
> Timestamp(1506527690, 11) >= Timestamp(1506527690, 9)
|
false
|
> Timestamp(1506527690, 11) < Timestamp(1506527690, 9)
|
true
|
> Timestamp(1506527690, 1) < Timestamp(1506527690, 9)
|
true
|
> Timestamp(1506527690, 10) < Timestamp(1506527690, 9)
|
true
|
> Timestamp(1506527690, 100) < Timestamp(1506527690, 9)
|
true
|
> Timestamp(1506527690, 900) < Timestamp(1506527690, 9)
|
false |
Attachments
Issue Links
- duplicates
-
SERVER-21861 Better Timestamp object comparison in mongo shell
-
- Closed
-