Prevent Timestamp comparison mistakes in the shell

XMLWordPrintableJSON

    • Type: Improvement
    • Resolution: Duplicate
    • Priority: Major - P3
    • None
    • Affects Version/s: None
    • Component/s: Shell
    • None
    • Server Tooling & Methods
    • None
    • 3
    • None
    • None
    • None
    • None
    • None
    • None
    • None

      It's easy to think that Timestamp objects are comparable in the shell:

      > Timestamp(1, 9) > Timestamp(1, 8)
      true
      

      But they are not:

      > Timestamp(1, 9) > Timestamp(1, 10)
      true
      

      I don't know what the rules are for comparing Timestamps, but they're not correct. This leads to bugs like SERVER-41008. Let's either fix comparison, or make comparison operators throw an error so we remember to use timestampCmp from shell/utils.js.

              Assignee:
              Backlog - Server Tooling and Methods (STM) (Inactive)
              Reporter:
              A. Jesse Jiryu Davis
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

                Created:
                Updated:
                Resolved: