Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SERVER-40357 expand all calls to MONGO_DISALLOW_COPYING | Billy Donahue | 2019-03-28 | 1 | -2/+2 |
| | | | | | | | | | | | produced by: hits="$(git grep -n MONGO_DISALLOW_COPYING | cut -d: -f1 )" for f in "$hits"; do sed -i.orig ' s/^\( *\)MONGO_DISALLOW_COPYING(\(.*\));/\1\2(const \2\&) = delete;\n\1\2\& operator=(const \2\&) = delete;/; ' $f done | ||||
* | SERVER-39560 - remove leading blank line on all C++ files | Billy Donahue | 2019-02-13 | 1 | -3/+4 |
| | | | | | | 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 license | Ramon Fernandez | 2018-10-22 | 1 | -8/+10 |
| | |||||
* | SERVER-36257 Remove copyDB and clone commands | Maria van Keulen | 2018-08-07 | 1 | -1/+1 |
| | |||||
* | SERVER-35115 Separate dbclientinterface.h into several parts, one per class. | Henrik Edin | 2018-06-29 | 1 | -1/+1 |
| | |||||
* | SERVER-34437 Remove snapshot query option from cloner | jannaerin | 2018-04-13 | 1 | -4/+0 |
| | |||||
* | SERVER-32847: Make copyDb transfer UUIDs when creating collections | jannaerin | 2018-03-21 | 1 | -6/+2 |
| | |||||
* | SERVER-32643 Add a metadataOnly flag to the clone command | Kaitlin Mahar | 2018-01-23 | 1 | -1/+7 |
| | |||||
* | SERVER-31805 provide option to Cloner to preserve UUIDs | Judah Schvimer | 2017-11-08 | 1 | -1/+9 |
| | |||||
* | SERVER-31061 Add `mongo+srv://` support for URIs. | ADAM David Alan Martin | 2017-10-31 | 1 | -2/+2 |
| | | | | | | | | | The shell now supports parsing and handling `mongo+srv://` style URIs, as part of the DNS Seedlist support. These URIs require DNS SRV and TXT record lookups, for extra configuration options. The shell also supports a (limited) form of connection-failover -- when initially connecting to a non-replica-set cluster, the shell will try each host listed, in order, until a connection can be established. | ||||
* | SERVER-27938 Rename all OperationContext variables to opCtx | Maria van Keulen | 2017-03-07 | 1 | -5/+5 |
| | | | | | | This commit is an automated rename of all whole word instances of txn, _txn, and txnPtr to opCtx, _opCtx, and opCtxPtr, respectively in all .cpp and .h files in src/mongo. | ||||
* | SERVER-26764 Do not defer creation of _id index for replicated collections | Tess Avitabile | 2016-10-28 | 1 | -6/+17 |
| | |||||
* | SERVER-24326 Remove unused 'checkForCatalogChange' in CloneOptions struct | Jess Fan | 2016-06-21 | 1 | -6/+0 |
| | |||||
* | SERVER-24323 Rename CatalogManager to ShardingCatalogClient | Spencer T Brody | 2016-06-13 | 1 | -1/+1 |
| | | | | | | Renames the relevant classes and libraries, moves files, updates comments referencing the CatalogManager, and renames common methods for getting the catalogManager (like grid.catalogManager()). No functional changes. | ||||
* | SERVER-23971 Clang-Format code | Mark Benvenuto | 2016-05-28 | 1 | -1/+1 |
| | |||||
* | SERVER-23919 gather all collection names at the start of initial sync | Eric Milkie | 2016-05-02 | 1 | -1/+24 |
| | |||||
* | SERVER-23268 remove CatalogManager::ConfigServerMode::SCCC | Misha Tyulenev | 2016-04-21 | 1 | -1/+0 |
| | |||||
* | SERVER-20036 Interrupt mapReduce and movePrimary commands on catalog manager ↵ | Spencer T Brody | 2016-01-21 | 1 | -2/+9 |
| | | | | change | ||||
* | SERVER-21958 Remove mayYield and mayBeInterrupted flags from cloner, as it ↵ | Andy Schwerin | 2015-12-21 | 1 | -26/+7 |
| | | | | is always set to true. | ||||
* | SERVER-17544 remove $-prefixed find options from jstests and comments | David Storch | 2015-07-23 | 1 | -1/+1 |
| | | | | | Since the format for passing these options is different for the find command, these options should be specified using the DBQuery helpers. | ||||
* | SERVER-19298: always use collection options when creating collections | Scott Hernandez | 2015-07-08 | 1 | -0/+2 |
| | |||||
* | SERVER-18579: Clang-Format - reformat code, no comment reflow | Mark Benvenuto | 2015-06-20 | 1 | -86/+87 |
| | |||||
* | SERVER-17309 Replace std::auto_ptr<T> with std::unique_ptr<T> | Andrew Morrow | 2015-06-10 | 1 | -1/+1 |
| | |||||
* | SERVER-18567 Replace usages of the legacy ConnectionString::parse | Kaloian Manassiev | 2015-05-22 | 1 | -8/+8 |
| | | | | This is all the non-sharding code, which is using it. | ||||
* | SERVER-15860 Switch replication metadata ops to be replication-specific, ↵ | matt dannenberg | 2015-04-17 | 1 | -6/+1 |
| | | | | rather than using commands | ||||
* | SERVER-13256 Add std namespace qualifications in headers | Andrew Morrow | 2015-01-15 | 1 | -1/+1 |
| | |||||
* | SERVER-14668/SERVER-15294 Collection-level locking for all read paths | Kaloian Manassiev | 2014-10-06 | 1 | -5/+4 |
| | |||||
* | SERVER-15317 Remove extraneous references to deprecated repl headers outside ↵ | Andy Schwerin | 2014-09-19 | 1 | -0/+1 |
| | | | | the repl directory. | ||||
* | SERVER-14378: cloner shouldn't use system.indexes but listIndexes | Eliot Horowitz | 2014-07-28 | 1 | -1/+10 |
| | |||||
* | SERVER-14378: Cloner shouldn't use system.namespaces | Eliot Horowitz | 2014-07-28 | 1 | -2/+2 |
| | |||||
* | SERVER-13922 Remove Context and dbtemprelease from the cloner | Kaloian Manassiev | 2014-06-09 | 1 | -2/+2 |
| | | | | | | | | | | | Substituting with plain TempRelease, combined with re-acquiring the database after lock is re-acquired. Since copydb/clonedb are not shard-aware operations, we skip the shard version check. The usages, which originate from replication are all from the secondaries, so there is no need for version check there either. | ||||
* | SERVER-13961 fix struct/class mismatch in cloner | Hari Khalsa | 2014-06-03 | 1 | -1/+1 |
| | |||||
* | SERVER-13961 move repl-specific cloner static methods to where they're used | Hari Khalsa | 2014-06-03 | 1 | -40/+15 |
| | |||||
* | SERVER-13256: Remove pch - qualify std in headers | Mark Benvenuto | 2014-05-19 | 1 | -14/+14 |
| | |||||
* | SERVER-13641 rename TransactionExperiment to OperationContext | Hari Khalsa | 2014-05-15 | 1 | -6/+6 |
| | |||||
* | SERVER-13643 Plumb TransactionExperiment through Cloner | Mathias Stearn | 2014-04-30 | 1 | -11/+30 |
| | |||||
* | SERVER:8412: re-write repairDatabase to use new constructs | Eliot Horowitz | 2014-02-18 | 1 | -0/+1 |
| | | | | to make clean, also fix Database::createColection | ||||
* | SERVER-11611: port Cloner to Collection methods | Eliot Horowitz | 2013-12-28 | 1 | -21/+9 |
| | |||||
* | SERVER-8886 Add OpenSSL exception to files in src/mongo/db | Ian Whalen | 2013-09-06 | 1 | -0/+12 |
| | |||||
* | SERVER-8791 SERVER-9212 retire indexplugin/indextype | Hari Khalsa | 2013-05-02 | 1 | -1/+0 |
| | |||||
* | SERVER-8791 SERVER-9165 SERVER-9212 move build into own class, clean up ↵ | Hari Khalsa | 2013-04-19 | 1 | -11/+0 |
| | | | | getKeys calls | ||||
* | SERVER-8280 SERVER-7864 Make copydb command work without username/password ↵ | Spencer T Brody | 2013-03-18 | 1 | -1/+3 |
| | | | | when dest machine has auth but source does not | ||||
* | Fix Windows warnings | Tad Marshall | 2012-12-07 | 1 | -1/+1 |
| | | | | | warning C4099: type name first seen using 'class' now seen using 'struct' warning C4101: unreferenced local variable | ||||
* | SERVER-3160: Sort index keys during clone | Ben Becker | 2012-12-06 | 1 | -21/+85 |
| | |||||
* | cloner has options to only sync data and or indexes | Eliot Horowitz | 2012-06-03 | 1 | -0/+3 |
| | |||||
* | make cloner options/api cleaner before adding more | Eliot Horowitz | 2012-06-03 | 1 | -0/+31 |
| | |||||
* | bulk move of code to src/ SERVER-4551 | Eliot Horowitz | 2011-12-24 | 1 | -0/+39 |