summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/dbcheck.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-21/+23
|
* SERVER-36400 Explicitly destroy the client on exiting run() of each ↵Xiangyu Yao2018-08-061-0/+1
| | | | BackgroundJob
* SERVER-34414 Create system indexes using the normal index creation and ↵Matthew Russotto2018-07-031-1/+2
| | | | | | | replication process. Do not create them directly on secondaries. Do create oplog entries for index creation.
* SERVER-34824 Make prepareTransaction command write a prepare oplog entry and ↵Judah Schvimer2018-06-071-1/+2
| | | | use its optime as the prepare timestamp
* SERVER-34653 MONGO_REGISTER_TEST_COMMANDBilly Donahue2018-05-161-6/+1
|
* SERVER-34179 refactor isGenericArgumentBilly Donahue2018-04-021-1/+2
| | | | | | | | | Remove the static tables floating around at namespace scope. break CommandHelpers::isGenericArgument into command_generic_argument library so it doesn't have to be inline. Some callers depend on it but would have a circularity if they actually added db/commands to their LIBDEPS.
* SERVER-33889 Split dcommands and core into libraries for embedded vs ↵Henrik Edin2018-03-231-0/+1
| | | | standalone process applications. Refactored commands libraries throughout the codebase and made their uses be LIBDEPS_PRIVATE when possible as most commands don't export any symbols and don't even have headerfiles.
* SERVER-33892 Separate test_commands_enabled libraryBilly Donahue2018-03-141-1/+1
|
* SERVER-32597 Bump generic fCV referencesMaria van Keulen2018-02-211-8/+0
|
* SERVER-33286 Provide service context in Command::secondaryAllowed to allow ↵Henrik Edin2018-02-141-1/+1
| | | | getting interfaces without using global get function.
* SERVER-33136 const-ify the command auth accessorsBilly Donahue2018-02-061-1/+1
|
* SERVER-32958 unrevert "SERVER-32958 slaveOk,slaveOverrideOk replacement"Billy Donahue2018-01-311-2/+2
| | | | | | w/fix: update a new command to secondaryAllowed This reverts commit d75cb425fbc3cf4b569eb1722c3f8abec45654a2.
* Revert "SERVER-32958 slaveOk,slaveOverrideOk replacement"Judah Schvimer2018-01-311-2/+2
| | | | This reverts commit be24b0323d3f2d424d9e22337f4221d39001ac31.
* SERVER-32958 slaveOk,slaveOverrideOk replacementBilly Donahue2018-01-311-2/+2
| | | | declare read_preference dep. update service_entry_opint_embedded
* SERVER-32958 Command::help() returns std::stringBilly Donahue2018-01-301-10/+10
|
* SERVER-32412 Add featureCompatibilityVersion 4.0 to the list of valid ↵Dianna Hohensee2018-01-241-1/+1
| | | | featureCompatibility values
* SERVER-32646 CommandHelpersBilly Donahue2018-01-161-1/+1
|
* SERVER-31608 remove FCV gettersJudah Schvimer2017-10-261-1/+2
|
* SERVER-31678 Thread through the operation wall-clock time for oplog entriesKaloian Manassiev2017-10-251-2/+14
|
* Revert "SERVER-31678 Thread through the operation wall-clock time for oplog ↵Judah Schvimer2017-10-251-14/+2
| | | | | | entries" This reverts commit 8e69370f5f9b30f3097970c4743ae993c21ed0b3.
* SERVER-31678 Thread through the operation wall-clock time for oplog entriesKaloian Manassiev2017-10-251-2/+14
|
* Revert "SERVER-31678 Thread through the operation wall-clock time for oplog ↵Judah Schvimer2017-10-251-14/+2
| | | | | | entries" This reverts commit 080514c9ee36564d8342cd832f3c5f3a199a9845.
* SERVER-31678 Thread through the operation wall-clock time for oplog entriesKaloian Manassiev2017-10-251-2/+14
|
* SERVER-30745 Prohibit unsafe comparisons against featureCompatibilityVersionLouis Williams2017-10-061-2/+1
|
* SERVER-31070 dbCheck should be a test commandLouis Williams2017-09-211-1/+3
|
* SERVER-30895 Make repl::logOp accept an OperationSessionInfo, instead of ↵Randolph Tan2017-09-121-9/+2
| | | | extracting session info from the operation context
* Check if collection has UUID before getting metadataLouis Williams2017-09-081-2/+7
|
* SERVER-30934 Check if DB is null before getting collectionLouis Williams2017-09-081-1/+5
|
* SERVER-30762 Add dbCheck jstests.Ian Kuehne2017-08-251-89/+126
| | | | Also includes miscellaneous fixes to make the new tests pass.
* SERVER-30776 Fix dbCheck authorization.Ian Kuehne2017-08-251-2/+10
|
* SERVER-30806 Add options for limiting dbCheck rateIan Kuehne2017-08-251-2/+27
|
* SERVER-30719 Fix dbCheck behavior on stepdown.Ian Kuehne2017-08-231-23/+71
|
* SERVER-30646 Fix dbCheck health log entries.Ian Kuehne2017-08-221-12/+13
|
* SERVER-30573 Add dbCheck command.Ian Kuehne2017-08-221-0/+430
Also includes fixes for SERVER-30439, SERVER-30422 and SERVER-30618.