Translate $out tests in jstests/sharding to use $merge

XMLWordPrintableJSON

    • Type: Task
    • Resolution: Fixed
    • Priority: Major - P3
    • 4.1.12
    • Affects Version/s: None
    • Component/s: Aggregation Framework
    • None
    • Fully Compatible
    • Query 2019-06-03
    • None
    • 3
    • None
    • None
    • None
    • None
    • None
    • None
    • None

      For this task we just want to translate tests of modes "insertDocuments" and "replaceDocuments". Don't worry about removing duplicate coverage, that will be done by SERVER-41197.

      Written as   Translates to
      {$out: {
      to: "x",
      uniqueKey: {x_id: 1},
      mode: "insertDocuments"
      }}
      {$merge: {
      into: "x",
      on: "x_id"
      whenMatched: "fail",
      whenNotMatched: "insert"
      }}
      {$out: {
      to: "x",
      uniqueKey: {x_id: 1},
      mode: "replaceDocuments"
      }}
      {$merge: {
      into: "x",
      on: "x_id",
      whenMatched: "replaceWithNew",
      whenNotMatched: "insert"
      }}

              Assignee:
              Nicholas Zolnierz
              Reporter:
              Charlie Swanson
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

                Created:
                Updated:
                Resolved: