Uploaded image for project: 'Python Driver'
  1. Python Driver
  2. PYTHON-1014

Unrecognized $-operators are omitted from find command

    • Type: Icon: Bug Bug
    • Resolution: Done
    • Priority: Icon: Minor - P4 Minor - P4
    • 3.2
    • Affects Version/s: None
    • Component/s: None
    • Labels:
      None

      Input:

      _gen_find_command('collection', {'$query': {'foo': 1}, '$dumb': 2}, None,
                        0, 0, 0, None)
      

      I believe the expected output is:

      SON([('find', 'collection'), ('filter', {'foo': 1}), ('$dumb', 2)])
      

      But the unrecognized $-option is omitted, if there is also a $query in the input:

      SON([('find', 'collection'), ('filter', {'foo': 1})])
      

            Assignee:
            anna.herlihy@mongodb.com Anna Herlihy (Inactive)
            Reporter:
            jesse@mongodb.com A. Jesse Jiryu Davis
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: