summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/record_store_test_updaterecord.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-61278 Guard capped clustered collections behind enableTestCommandsJosef Ahmad2022-01-181-2/+2
|
* SERVER-41772 Apply clang-format 7.0.1 to the codebaseclang-format-7.0.12019-07-271-1/+1
|
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-131-3/+0
| | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-8/+10
|
* SERVER-36662 Delete UpdateNotifier.David Storch2018-08-291-61/+2
| | | | | | The UpdateNotifier was a callback mechanism for issuing MMAPv1 diskloc invalidations. It does nothing now that MMAPv1 invalidations are themselves deleted.
* SERVER-35626 remove old MMAP 'enforceQuota' codeDianna Hohensee2018-07-131-9/+8
|
* SERVER-36013 Remove isMMAPv1 predicates and resulting dead codeGeert Bosch2018-07-111-32/+4
|
* SERVER-30778 Consolidate RecordStore interface to always use timestampsEric Milkie2017-08-291-10/+10
|
* SERVER-27257 Deduplicate symbol `newHarnessHelper`ADAM David Alan Martin2016-12-141-5/+7
| | | | | | | | | | | The `newHarnessHelper` function was defined by multiple test driver modules, each one specializing it to return a specific kind of storage test driver's `HarnessHelper`. The two different kinds of `HarnessHelper` class were given a common base class, and the `newHarnessHelper` function was changed to a single implementation. This new implementation returns the results of a `HarnessHelper` factory function which can be registered by a MONGO_INITIALIZER statement.
* SERVER-23905 Unify lifetime management for LockState on OperationContexts ↵Andy Schwerin2016-06-031-15/+15
| | | | | | | into OperationContext. This change also moves responsibility for registering OperationContexts to Clients into ServiceContext::makeOperationContext.
* SERVER-23873 Optimize checking for interruptMathias Stearn2016-05-101-0/+2
|
* SERVER-23271 Add keysInserted and keysDeleted metrics for CRUD opsJames Wahlin2016-04-211-18/+36
|
* Revert "SERVER-23271 Add keysInserted and keysDeleted metrics for CRUD ops"Benety Goh2016-04-211-36/+18
| | | | This reverts commit 6bbaee174447ee1c9177c72bdd07f050ab07e901.
* SERVER-23271 Add keysInserted and keysDeleted metrics for CRUD opsJames Wahlin2016-04-211-18/+36
|
* SERVER-18579: Clang-Format - reformat code, no comment reflowMark Benvenuto2015-06-201-161/+143
|
* SERVER-17308 Replace boost::scoped_ptr<T> with std::unique_ptr<T>Andrew Morrow2015-06-101-23/+22
|
* SERVER-16959 send INVALIDATION_MUTATION message prior to an in-place updateDavid Storch2015-01-211-5/+9
|
* SERVER-13256 Remove scoped_ptr from pch.hAndrew Morrow2015-01-051-0/+3
|
* SERVER-13679 Replace DiskLoc with RecordId outside of MMAPv1Mathias Stearn2014-11-261-10/+10
| | | | | | | | | | | Operations: sed -i -e 's/\<DiskLoc\>/RecordId/g' sed -i -e 's/\<DiskLocs\>/RecordIds/g' sed -i -e 's/\<minDiskLoc\>/RecordId::min()/g' sed -i -e 's/\<maxDiskLoc\>/RecordId::max()/g' sed -i -e 's/\<getDiskLoc\>/getRecordId/g'' Changes under mmap_v1 were reverted and redone by hand as needed.
* SERVER-13679 Add record_id.h and move diskloc.h under mmap_v1Mathias Stearn2014-11-261-1/+1
|
* SERVER-13635: hook up mmapv1 record stores to harnessEliot Horowitz2014-10-151-4/+4
|
* SERVER-13635 Expand set of generic RecordStore API tests.Max Hirschhorn2014-10-071-0/+238