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

duplicate _ids possible when values exceed max index key size

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

      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 Unassigned
            Reporter:
            aaron Aaron Staple
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved: