summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/restore_context.h
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-56388 Remove default RestoreType constructorSebastien Mendez2021-05-191-1/+1
|
* SERVER-51200 CollectionPtr in RequiresCollectionStage point to instance ↵Henrik Edin2020-10-131-0/+64
owned by AutoGetCollection RequiresCollectionStage now holds a pointer to CollectionPtr owned by an AutoGetCollection. When we save and restore the executor a new CollectionPtr pointer needs to be assigned. Plan executors can no longer be created with temporary CollectionPtr instances and their interface have been changed to take pointers to avoid binding to rvalues. RequiresCollectionStage no longer loads collections from the catalog and will be in sync with the owning AutoGetCollection.