Uploaded image for project: 'Core Server'
  1. Core Server
  2. SERVER-31301

Shell incorrectly compares timestamps

    • Type: Icon: Bug Bug
    • Resolution: Duplicate
    • Priority: Icon: Major - P3 Major - P3
    • None
    • Affects Version/s: 3.2.0, 3.4.0, 3.5.13
    • Component/s: Shell
    • None
    • ALL

      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
      

            Assignee:
            backlog-server-platform DO NOT USE - Backlog - Platform Team
            Reporter:
            charlie.swanson@mongodb.com Charlie Swanson
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Resolved: