summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline/document_source_lookup_change_post_image_test.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-39339 Remove `stdx/memory.h`ADAM David Alan Martin2019-06-101-9/+9
|
* SERVER-41053 Don't create ServiceContexts while doing updatesIan Boros2019-05-091-12/+12
| | | | This commit also renames DocumentSourceMock::create to DocumentSourceMock::createForTest.
* SERVER-39396 Move stub mongo process interface with mocked ↵Evan Nixon2019-04-111-74/+3
| | | | lookupSingleDocument to shared place
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-131-1/+0
| | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
* SERVER-38412 Allow resuming from a high-water-mark pseudo resume tokenBernard Gorman2019-01-241-1/+1
|
* SERVER-37560 Allow change streams to work with speculative majority readsWilliam Schultz2018-12-211-1/+2
| | | | This patch allows change stream queries to use speculative majority reads so that they can be used even when enableMajorityReadConcern:false. Change stream aggregation commands are allowed to use speculative majority reads as well as 'find' commands that specify a special flag. This commit also enables all change streams tests and suites on the enableMajorityReadConcern:false Evergreen variant. No optimizations for speculative majority change streams are included in this commit.
* SERVER-32308 Address ASAN failure due to leaked Pipeline in ↵James Wahlin2018-12-141-2/+4
| | | | attachCursorSourceToPipeline
* SERVER-32308 remove unused variableBenety Goh2018-12-121-1/+1
|
* SERVER-32308 Support for $lookup to execute on mongos against a sharded ↵James Wahlin2018-12-121-14/+12
| | | | foreign collection
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-21/+23
|
* SERVER-35119 Remove 3.6 featureCompatibilityVersion checksCharlie Swanson2018-06-151-2/+2
|
* SERVER-34314 Ensure change stream can resume between entries in applyOps entryIan Boros2018-04-161-1/+1
|
* SERVER-34313 Use hex-encoded string for resume tokenCharlie Swanson2018-04-131-2/+2
|
* SERVER-33820: Allow change streams with 'updateLookup': "fullDocument" ↵Nick Zolnierz2018-04-041-8/+67
| | | | against an entire database
* Revert "SERVER-32308: Add the ability for a $lookup stage to execute on ↵Nick Zolnierz2018-01-161-4/+4
| | | | | | mongos against a sharded foreign collection" This reverts commit 7298d273c0497f2720ec1471ad0f4910bff07af4.
* SERVER-32308: Add the ability for a $lookup stage to execute on mongos ↵Nick Zolnierz2018-01-121-4/+4
| | | | against a sharded foreign collection
* SERVER-32190 Shorten MongoDProcessInterface to MongoDInterface.Charlie Swanson2017-12-191-9/+9
| | | | | | Similarly shorten other similar MongoProcessInterface implementation's names, e.g. MongoSProcessInterface -> MongoSInterface and MockMongoProcessInterface -> MockMongoInterface.
* SERVER-32190 Make MongoProcessInterface always availableCharlie Swanson2017-12-191-21/+22
|
* SERVER-31665 Use correct read concern/preference during update lookupCharlie Swanson2017-11-171-1/+2
|
* SERVER-31447 Use correct collation for update lookupCharlie Swanson2017-11-151-6/+9
|
* Revert "SERVER-31447 Use correct collation for update lookup"Max Hirschhorn2017-11-141-9/+6
| | | | This reverts commit de0b16077945eb6b6ec161b99f41c3222aade3b8.
* SERVER-31447 Use correct collation for update lookupCharlie Swanson2017-11-141-6/+9
|
* SERVER-31597 Refactor $changeStream post-update lookupBernard Gorman2017-10-261-2/+24
|
* SERVER-29716 Keystring-encode ResumeTokens to allow bytewise comparisonsMatthew Russotto2017-10-051-4/+5
|
* SERVER-29609 Rename MongodInterface to MongoProcessInterface.Charlie Swanson2017-10-031-18/+18
|
* SERVER-30399 Add caching for $lookup non-correlated sub-pipeline prefixBernard Gorman2017-09-241-3/+15
|
* SERVER-30591 Do changeStream lookups by UUID instead of namespace.Siyuan Zhou2017-09-151-12/+45
|
* SERVER-30580 Eliminate UserException and MsgAssertionException typesMathias Stearn2017-08-161-6/+6
| | | | All users were converted to just use AssertionException.
* SERVER-30512 Omit fullDocument in change stream if it's null unless ↵Siyuan Zhou2017-08-151-7/+6
| | | | updateLookup is specified explicitly.
* SERVER-30506 Rename $changeNotification to $changeStreamCharlie Swanson2017-08-041-1/+1
|
* SERVER-29135 Add post-image lookup to $changeNotificationEddie Louie2017-08-011-0/+266
| | | | This reverts commit 2a76bd75d75197d3604643ff2b11d0a8f23c14f9.
* Revert "SERVER-29135 Add post-image lookup to $changeNotification"Eddie Louie2017-08-011-266/+0
| | | | This reverts commit ad30a49a33b8773cbc07388bb257d605cbd6aa12.
* SERVER-29135 Add post-image lookup to $changeNotificationCharlie Swanson2017-08-011-0/+266
This patch only adds support on an unsharded collection.