summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-5811 implement the killCursors command for mongodDavid Storch2015-06-2320-70/+902
| | | | Implementing the killCursors command in mongos and the mongo shell is further work.
* SERVER-18883 Separate user role resolution from getUserDescriptionSpencer Jackson2015-06-232-19/+33
|
* SERVER-16889 CanonicalQuery::canonicalize() return SW<unique_ptr<CQ>>Qingyang Chen2015-06-2343-789/+734
|
* SERVER-19078 getChunks should accept sort and limitKaloian Manassiev2015-06-2315-75/+103
| | | | | Currently we accept nToReturn, which does not make sense when using commands through the catalog manager replica set.
* SERVER-18662 Store SSL_CTX in unique_ptrSpencer Jackson2015-06-231-31/+31
|
* SERVER-18953 SERVER-9567 Add debug symbols archive targetJonathan Reams2015-06-231-7/+46
|
* SERVER-18595 Implement getTagForChunk for RS catalog managerDaniel Alabi2015-06-232-1/+152
|
* SERVER-19069 Fix argument name typoKaloian Manassiev2015-06-221-1/+1
|
* SERVER-19069 Implement getTagsForCollection in the replica set catalog managerKaloian Manassiev2015-06-225-28/+164
|
* SERVER-18498 Don't attach term to oplog in old protocol version.Siyuan Zhou2015-06-227-57/+70
| | | | Audit the occurrences of OpTime comparison.
* SERVER-19045 fix duplicate uassert codeAdam Midvidy2015-06-221-1/+1
|
* SERVER-19045 don't throw non-exceptionsAdam Midvidy2015-06-222-5/+5
|
* SERVER-19035 bump wire version for OP_COMMAND and find/getMoreAdam Midvidy2015-06-221-2/+5
|
* SERVER-19069 Fix formatting errorKaloian Manassiev2015-06-221-3/+2
|
* SERVER-19069 Add sort argument to LiteParsedQuery::makeAsFindCommandKaloian Manassiev2015-06-224-7/+12
|
* SERVER-19069 Make getDistLockManager constKaloian Manassiev2015-06-225-5/+12
|
* SERVER-18593 Implement getDatabasesForShard for RS catalog managerDaniel Alabi2015-06-223-4/+117
|
* SERVER-18594 Implement getCollections for RS catalog manager and write ↵Daniel Alabi2015-06-223-7/+204
| | | | accompanying unit tests
* SERVER-19046 Make myTerminate call quickExit when re-entered by a single thread.Andy Schwerin2015-06-221-18/+38
|
* SERVER-6737 Simplify existing thread local support.Andy Schwerin2015-06-223-117/+49
|
* SERVER-19021 CatalogManagerReplicaSet implementation of logAction methodSpencer T Brody2015-06-228-12/+243
|
* SERVER-18436 Abstract NotMaster retry logic into a helper method in the RS ↵Spencer T Brody2015-06-223-59/+76
| | | | catalog manager
* Revert "SERVER-16889 query subsystem CanonicalQuery::canonicalize use ↵Qingyang Chen2015-06-2243-737/+793
| | | | | | StatusWith<unique_ptr> for ownership transfer" This reverts commit 3f6f66daac840fe2b2dc26eeeacbf015479567df.
* SERVER-16889 query subsystem CanonicalQuery::canonicalize use ↵Qingyang Chen2015-06-2243-793/+737
| | | | StatusWith<unique_ptr> for ownership transfer
* SERVER-18579: Suppress lint.py warningsMark Benvenuto2015-06-201-9/+9
|
* SERVER-18579: Add .clang-format & Scons supportMark Benvenuto2015-06-201-0/+61
|
* SERVER-18978: Clang-Format - Fix comment word wrapping indentationMark Benvenuto2015-06-20117-782/+989
|
* SERVER-18579: Clang-Format - reformat code, no comment reflowMark Benvenuto2015-06-202167-405300/+404489
|
* SERVER-19041 Simplify SimpleMutexAndrew Morrow2015-06-1978-234/+247
|
* SERVER-19051 Use unique_ptr in SSLThreadInfo to fix MSVC buildsSpencer Jackson2015-06-191-8/+7
|
* SERVER-19052 Remove sizeStorer recalculations at startup with WiredTigerDan Pasette2015-06-193-13/+3
|
* SERVER-18036 renamed Fetcher::BatchData to QueryResponseBenety Goh2015-06-1912-81/+171
| | | | | Fetcher callback semantics also updated so that when NextAction is NoAction, the follow up command BSON builder will be null.
* SERVER-19054: Don't log background tasks taking less than 100msGeert Bosch2015-06-191-1/+2
|
* Cleanup memory in scoped_db_conn_testSpencer Jackson2015-06-191-1/+1
|
* SERVER-18979: Duplicate uassert & fassert codesMark Benvenuto2015-06-191-2/+2
|
* SERVER-19051 Cleanup memory allocated by SSLThreadInfoSpencer Jackson2015-06-191-6/+8
|
* SERVER-17308 Remove duplicate std::unique_ptr using-declarationsJason Rassi2015-06-1939-75/+36
|
* SERVER-18036 removed NamespaceString construction from DBClientCursorBenety Goh2015-06-192-52/+93
|
* SERVER-18036 pipeline command should check collection name before creating ↵Benety Goh2015-06-191-2/+3
| | | | namespace
* SERVER-18929: Fix signed/unsigned comparisons in unittestMisha Tyulenev2015-06-191-10/+13
|
* SERVER-18062 Implicitly create database for createIndexesKaloian Manassiev2015-06-196-92/+187
| | | | | Also moves some commands out of commands_public.cpp in an effort to get rid of this file.
* SERVER-18588 Adjust read-after-optime interfaceRandolph Tan2015-06-196-157/+29
|
* SERVER-18589 Fix compile failureRandolph Tan2015-06-191-1/+1
|
* SERVER-18589 Refactor find and runCommand from CatalogManagerRSRandolph Tan2015-06-196-137/+143
|
* SERVER-18036 data replication reporter should wait till callback is invoked ↵Benety Goh2015-06-193-18/+44
| | | | before setting its state to inactive
* SERVER-18036 moved getDetectableErrorStatus() to replication executor test ↵Benety Goh2015-06-1913-79/+80
| | | | | | fixture make all setUp/tearDown test fixture functions for data replicator protected
* SERVER-18036 added requestShutdown() to data replicatorBenety Goh2015-06-194-62/+137
|
* SERVER-18929: Compute available space for output docs in CommandReplyBuilderMisha Tyulenev2015-06-199-87/+297
|
* SERVER-18589 Change makeAsFinCmd to accept optional<int> for limitRandolph Tan2015-06-195-19/+74
|
* Revert "Revert "SERVER-18589 Create LiteParseQuery factory for find cmd""Randolph Tan2015-06-196-348/+415
| | | | | | | This reverts commit d7a19f4e49a93de40295d39c00abec96fdffe987. Conflicts: src/mongo/db/query/lite_parsed_query_test.cpp