WiredTiger Crash when inserting documents in a specific order

XMLWordPrintableJSON

    • Type: Bug
    • Resolution: Duplicate
    • Priority: Major - P3
    • None
    • Affects Version/s: 2.8.0-rc2
    • Component/s: Storage
    • None
    • ALL
    • None
    • 3
    • None
    • None
    • None
    • None
    • None
    • None
    • None

      We just started running the .NET driver's test suite against the wired tiger storage engine and ended up crashing the server. I have reproduced the problem in the shell on windows and was told it occurs on OSX as well. The order of the insertions is important. It has to be a Timestamp first followed by a Date on an indexed field. This does not happen on mmapv1 - only wired tiger.

      First repro using _id:

      db.foo.insert({ _id: new Timestamp() })
      db.foo.insert({ _id: new Date() })
      

      Second repro using an index:

      db.foo.createIndex({x:1})
      db.foo.insert({ x: new Timestamp() })
      db.foo.insert({ x: new Date() })
      

              Assignee:
              Matt Kangas (Inactive)
              Reporter:
              Craig Wilson
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

                Created:
                Updated:
                Resolved: