duplicate _ids possible when values exceed max index key size

XMLWordPrintableJSON

    • Type: Bug
    • Resolution: Duplicate
    • Priority: Major - P3
    • None
    • Affects Version/s: None
    • Component/s: Index Maintenance
    • None
    • ALL
    • None
    • 3
    • None
    • None
    • None
    • None
    • None
    • None
    • None

      Observed behavior: _id values larger than the max key size are not indexed and so duplicates are not prevented
      Expected behavior: _id value larger than max key size is not allowed

      Test

      > c.drop()
      true
      > var big = new Array( 10000 ).toString()
      > c.save( { _id:big } )
      > c.save( { _id:big } )
      > c.count()
      2
      > c.find( { _id:big, dummy:null } ).hint( { $natural:1 } ).itcount()
      2
      

              Assignee:
              Unassigned
              Reporter:
              Aaron Staple (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved: