positional operator projection does not work with find and modify

XMLWordPrintableJSON

    • Type: Bug
    • Resolution: Duplicate
    • Priority: Major - P3
    • None
    • Affects Version/s: None
    • Component/s: Querying
    • Fully Compatible
    • ALL
    • Quint Iteration 3.1.2, Quint Iteration 3
    • None
    • 3
    • None
    • None
    • None
    • None
    • None
    • None
    • None

      The match details aren't passed in when find and modify calls transform() so positional operator projection doesn't work yet.

      c = db.c;
      c.drop();
      
      c.save( { a:[ 1, 2 ] } );
      
      // Does the expected projection.
      printjson( c.find( { a:2 }, { 'a.$':1 } ).toArray() );
      
      // Doesn't do the expected projection.
      printjson( c.findAndModify( { query:{ a:2 }, fields:{ 'a.$':1 }, remove:true } ) );
      

              Assignee:
              Max Hirschhorn
              Reporter:
              Aaron Staple (Inactive)
              Votes:
              3 Vote for this issue
              Watchers:
              5 Start watching this issue

                Created:
                Updated:
                Resolved: