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

Translate $out tests in jstests/aggregation/sources/out to use $merge

    XMLWordPrintableJSON

Details

    • Task
    • Status: Closed
    • Major - P3
    • Resolution: Fixed
    • None
    • 4.1.12
    • Aggregation Framework
    • None
    • Fully Compatible
    • Query 2019-06-03

    Description

      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"
      }}

      Attachments

        Issue Links

          Activity

            People

              nicholas.zolnierz@mongodb.com Nicholas Zolnierz
              charlie.swanson@mongodb.com Charlie Swanson
              Votes:
              0 Vote for this issue
              Watchers:
              6 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: