summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/sharded_connection_info.h
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-40357 expand all calls to MONGO_DISALLOW_COPYINGBilly Donahue2019-03-281-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++ filesBilly Donahue2019-02-131-1/+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-14/+16
|
* SERVER-29908 Move more libraries from sharding into ↵Kaloian Manassiev2018-03-131-3/+0
| | | | sharding_api_d/sharding_runtime_d
* SERVER-32198 Make ShardedConnectionInfo::getVersion return boost::optionalKaloian Manassiev2018-03-091-7/+5
| | | | | This allows the logic for making the shard version decision to be concentrated in CollectionShardingState entirely.
* Revert "Revert "SERVER-27750 Attach LogicalTimeMetadata to globalConnPool ↵Randolph Tan2017-03-101-1/+2
| | | | | | and shardConnectionPool"" This reverts commit 4e2cb91ed1fe8a9a8caead72a7f0bd56b2ba28d1.
* Revert "SERVER-27750 Attach LogicalTimeMetadata to globalConnPool and ↵Randolph Tan2017-03-091-2/+1
| | | | | | shardConnectionPool" This reverts commit 34dbe2a42d1db621f16555878b57f48efb30cc28.
* SERVER-27750 Attach LogicalTimeMetadata to globalConnPool and ↵Randolph Tan2017-03-081-1/+2
| | | | | | shardConnectionPool This also include refactor work to cleanup ShardingEgressMetadataHook api and allow ShardingConnectionHook to take EgressMetadataHookList.
* SERVER-23110 dbeval should not access collection sharding stateKaloian Manassiev2016-03-151-2/+11
|
* SERVER-19855 Make ShardForceVersionOkModeBlock use the OperationShardVersion ↵Spencer T Brody2015-09-171-11/+0
| | | | instead of the ShardedConnectionInfo
* SERVER-18084 Move code out of d_state.h/.cppKaloian Manassiev2015-07-111-0/+82
Move the ShardingState/ShardedConnectionInfo classes out of d_state and put them in separate sources under mongo/db. No functional changes.