summaryrefslogtreecommitdiff
path: root/src/mongo/client/dbclient_rs.h
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-50508 Rename ConnectionType::MASTER to ConnectionType::kStandaloneBen Caimano2020-10-261-1/+1
|
* SERVER-50511 Change local variables and functions in dbclient filesAmirsaman Memaripour2020-10-231-31/+32
|
* SERVER-49380 Add API params to mongo shellA. Jesse Jiryu Davis2020-08-201-1/+2
|
* SERVER-49112 Add Session::getSSLConfigurationGabriel Marks2020-07-081-0/+5
|
* SERVER-48178 Finding self in reconfig may be interrupted by closing ↵Mark Benvenuto2020-07-081-1/+1
| | | | connections due to rollback
* SERVER-45692 add explicit RWC to inter-node commands (even if merely ↵Kevin Pulo2020-03-051-14/+30
| | | | kImplicitDefault)
* SERVER-44631 DBClient_Connection should retain error code informationMatthew Russotto2019-11-261-1/+1
|
* SERVER-41772 Apply clang-format 7.0.1 to the codebaseclang-format-7.0.12019-07-271-3/+3
|
* SERVER-41071 Replace NULL and 0 with nullptrA. Jesse Jiryu Davis2019-06-141-6/+6
|
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-131-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-32978 Advertise SCRAM-SHA-256 authentication for the internal userJonathan Reams2018-11-141-0/+6
|
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-14/+17
|
* SERVER-36094 Make DBClientBase::query() take an NamespaceStringOrUUIDMatthew Russotto2018-08-141-1/+1
|
* SERVER-36094 Add override/final to DBClientBase methodsMatthew Russotto2018-08-091-33/+36
|
* SERVER-35115 Separate dbclientinterface.h into several parts, one per class.Henrik Edin2018-06-291-1/+1
|
* SERVER-31456 Expose server type on Mongo connection object.Max Hirschhorn2017-10-141-0/+4
| | | | | | This makes it possible to prevent the mongo shell from gossiping a clusterTime to stand-alone mongod processes when the mongo shell is also connected to a replica set or a sharded cluster.
* SERVER-30848 make shell getMores use sessionsJason Carey2017-10-031-3/+4
| | | | | The shell should attach the logical session used to initiate cursors (via find or aggregate) and use it for successive getMores.
* SERVER-28510 Add DBClient::runFireAndForgetCommand() and use it to implement ↵Mathias Stearn2017-08-171-0/+1
| | | | legacy op emulation
* SERVER-30080 LogicalSessions in the shellJason Carey2017-08-011-0/+4
| | | | Basic logical session implementation for the shell
* SERVER-28509 DBClient::killCursor() now uses commandMathias Stearn2017-07-261-1/+1
| | | | DBClientCursor still uses legacy op
* SERVER-30118 always check replyTo field in DBClientMathias Stearn2017-07-261-1/+1
|
* SERVER-28509 Flatten DBClient hierarchy to just DBClientBase and subclassesMathias Stearn2017-07-261-3/+2
|
* SERVER-28509 Make DBClientCursor store batch as vector<BSONObj>Mathias Stearn2017-06-281-2/+2
|
* SERVER-29319 Expose OpMsgRequest interface in DBClientMathias Stearn2017-06-191-10/+3
|
* SERVER-26683 Log reason for marking repl hosts as failed in the RSMKaloian Manassiev2016-10-241-8/+3
|
* Revert "SERVER-26683 Log reason for marking repl hosts as failed in the RSM"Kaloian Manassiev2016-10-241-3/+8
| | | | This reverts commit 80d6ca07522fce27f9559007791ebe4a1afe0866.
* SERVER-26683 Log reason for marking repl hosts as failed in the RSMKaloian Manassiev2016-10-241-8/+3
|
* SERVER-25151 Honor ssl=true/false in URIs in the shellsamantharitter2016-09-131-1/+5
|
* Revert "SERVER-25151 Honor 'ssl' option in URIs passed to the shell"samantharitter2016-09-131-5/+1
| | | | This reverts commit 7c3878adaf73736c33c7f65b718d8b5705c36142.
* SERVER-25151 Honor 'ssl' option in URIs passed to the shellsamantharitter2016-09-131-1/+5
|
* SERVER-23219 DBCommandCursor should route getMore operations to original serverJonathan Reams2016-08-291-0/+6
|
* SERVER-24611 Implement ClientMetadata classMark Benvenuto2016-08-041-0/+2
|
* SERVER-23192 periodically reload ShardRegistry from the catalogMisha Tyulenev2016-08-011-1/+2
|
* SERVER-22055 Remove unused client functionalityKaloian Manassiev2016-01-051-8/+2
|
* SERVER-20640 Get wire versions from native DBClient instead of running isMasterJonathan Reams2015-11-051-0/+3
|
* SERVER-19563 kill KillCursor piggyBack codeMathias Stearn2015-07-241-4/+0
|
* SERVER-18978: Clang-Format - Fix comment word wrapping indentationMark Benvenuto2015-06-201-2/+4
|
* SERVER-18579: Clang-Format - reformat code, no comment reflowMark Benvenuto2015-06-201-271/+297
|
* SERVER-18236 make runCommandHook and postRunCommand hook operate on the ↵Adam Midvidy2015-06-161-3/+3
| | | | metadata object
* SERVER-18292 SERVER-18236 read ReadPreference off of metadata in DBClientRSAdam Midvidy2015-06-161-0/+5
|
* SERVER-17307 Replace boost::shared_ptr and friends with std::shared_ptrAndrew Morrow2015-06-101-4/+3
|
* SERVER-17308 Replace boost::scoped_ptr<T> with std::unique_ptr<T>Andrew Morrow2015-06-101-2/+1
|
* SERVER-17309 Replace std::auto_ptr<T> with std::unique_ptr<T>Andrew Morrow2015-06-101-3/+3
|
* SERVER-18418 Remote command targeterKaloian Manassiev2015-05-121-53/+0
| | | | | This change introduces a remote command targeter interface to be used as a stub to start implementing the targeting logic.
* SERVER-17736 Remove obsolete C++ driver symbol export miscellaneaAndrew Morrow2015-03-261-4/+3
|
* SERVER-13256 Remove shared_ptr from pch.hAndrew Morrow2015-01-051-2/+2
|
* SERVER-13256 Remove scoped_ptr from pch.hAndrew Morrow2015-01-051-0/+1
|
* SERVER-16237 Don't check shard version if the replica set monitor knows the ↵Spencer T Brody2014-12-221-0/+11
| | | | primary is down
* SERVER-9788 mongos does not respect secondary preferred after temporarily ↵Randolph Tan2014-06-301-11/+39
| | | | unavailable secondary
* SERVER-13256: Remove pch - qualify std in headersMark Benvenuto2014-05-191-17/+17
|