summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-23092 Update BtreeKeyGeneratorV1 to be collation-awareTess Avitabile2016-03-237-25/+164
|
* SERVER-23290 fix lintGabriel Russell2016-03-231-3/+1
|
* SERVER-23290 very rare race in dumprestore_auth3.jsGabriel Russell2016-03-231-2/+5
|
* SERVER-23296 Move pending chunk management under MigrationDestinationManagerKaloian Manassiev2016-03-2310-554/+289
| | | | | | Moves the code, which manipulates the pending chunk data to reside under the migration destination manager instead of the global sharding state and makes it use the collection sharding state instead of the global map.
* SERVER-22430 check numInitialChunks earlier in shardCollection so as to ↵Dianna Hohensee2016-03-231-5/+17
| | | | prevent potential OOM errors
* SERVER-23279 network_interface_asio_test::getNumCanceledOps() unexpected valueWaley Chen2016-03-231-2/+2
|
* SERVER-23291 Update regex per changes in SERVER-23103Andrew Morrow2016-03-221-1/+1
|
* SERVER-23109 Typo in src/mongo/shell/collection.jsWaley Chen2016-03-221-1/+1
|
* SERVER-22128 Make resolveUserRoles publically accessibleSpencer Jackson2016-03-222-12/+10
|
* Revert "SERVER-23092 Update BtreeKeyGeneratorV1 to be collation-aware"Tess Avitabile2016-03-227-162/+25
| | | | This reverts commit 0af6e7685ab00249c38c8c874eda7cb895240f94.
* SERVER-22525 Translate old-style implicit options into new-styleMark Benvenuto2016-03-224-7/+255
|
* SERVER-22525 Revert "Fixes to support building against system boost 1.59"Andrew Morrow2016-03-223-6/+39
| | | | This reverts commit 53ce96ad0f9d410ef86dc3ad3a4bd45e0ea5eef1.
* SERVER-23092 Update BtreeKeyGeneratorV1 to be collation-awareTess Avitabile2016-03-227-25/+162
|
* SERVER-22656 Tighten assertions for move chunk donateKaloian Manassiev2016-03-225-129/+45
| | | | | | Moves the shard version checking during move chunk to happen at the time of metadata clone instead of being decided in advance and tightens the associated assertions.
* SERVER-21628 make plans with the SHARDING_FILTER stage eligible for ↵David Storch2016-03-222-0/+40
| | | | | | | explodeForSort This allows certain queries routed through mongos to use a non-blocking SORT_MERGE plan.
* Import wiredtiger-wiredtiger-2.7.0-1122-g9cf8eb2.tar.gz from wiredtiger ↵Alex Gorrod2016-03-22135-1433/+4213
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | branch mongodb-3.4 ref: 444981a..9cf8eb2 SERVER-23040 Coverity analysis defect 98151: Dereference after null check WT-2123 Don't clear allocated memory if not required WT-2318 Configurable thread wake up time WT-2322 Join cursor with isolation read-uncommitted may give different results with Bloom filters WT-2345 Evicting tiny pages creates small pages on disk WT-2375 Add tests for collators WT-2381 Dump utility discards table config WT-2384 lt, le conditions for ordering cursor in join cursor WT-2391 De-prioritize eviction from indexes WT-2404 Add streaming pack/unpack methods to the extension API WT-2414 Avoid extractor calls for ordering cursor in join cursor WT-2418 Rebalance operation failing with EBUSY WT-2426 Deadlock caused by recent changes to checkpoint handle locking WT-2431 Join statistics documentation needed WT-2435 __wt_evict_file_exclusive_on/off cleanups WT-2436 lt, le conditions for ref cursor with "strategy=bloom" in join cursor WT-2443 Getting statistic for all indexes used in join cursor WT-2444 Broken flag test in wtperf, whitespace WT-2447 Join cursor reads main table WT-2448 Add no_scale flag to relevant statistics WT-2449 Configure should check for a 64-bit build WT-2451 Allow eviction of metadata WT-2454 checkpoint_sync=false does *not* prevent flushes/sync to disk. WT-2456 Update Power8 CRC32 Code WT-2457 Dropping an LSM table can fail with EBUSY when no user ops are active WT-2459 Allow Configure scripts to provide the --tag option for libtool when compiling on PPC WT-2460 Checkpoint failing with WT_ROLLBACK WT-2461 Python sweep01 test failing WT-2463 Test that measures idle CPU usage fails under valgrind WT-2464 Valgrind errors. WT-2465 Coverity 1352899: Dereference before null check WT-2466 Coverity 1352893 Buffer not null terminated WT-2467 Coverity 1352894: Logically dead code WT-2468 Coverity 1352896: Explicit null dereferenced WT-2469 Coverity 1352897: Integer overflowed argument WT-2470 Coverity 1352898: Resource leak WT-2471 Review WiredTiger "int" printf formats WT-2473 MSVC doesn't support PRId64 WT-2475 Have reconf script remove cached configure results WT-2476 btree->evict_lock is being accessed after being destroyed WT-2477 Missing define in Windows wiredtiger_config.h WT-2478 Valgrind test failures WT-2481 Recent changes affect LSM performance WT-2482 Coverity 1353015, 1353016, out-of-bounds access WT-2483 readonly02 periodically fails WT-2484 Coverity 1345809: unchecked return value WT-2485 Test/format failure with Floating point exception WT-2487 Release memory in manydbs test WT-2489 Fix compiler warnings from /test/manydbs WT-2490 search_near() returns wrong key for column-store WT-2492 Windows test_config04.test_config04.test_invalid_config crashes WT-2493 Verbose lsm_manager unsupported WT-2494 Review calls to __wt_free, plus minor bug in an error path. WT-2495 Missing memory initialization leads to crash on Windows WT-2496 Testing revealed error unable to read root page WT-2497 Enhance test/format to save a copy of backup WT-2498 LSM tree drop hangs when a user cursor is open WT-2499 LSM shutdown race causes segfault WT-2501 Dropping a just opened LSM tree isn't safe WT-2502 Memory leak in locking handles for checkpoint WT-2503 Build warning in lsm_tree.c WT-2506 Using an uninitialised value
* SERVER-23103 Decouple BackgroundJob and SSLManagerAndrew Morrow2016-03-215-34/+3
|
* SERVER-23103 Remove some stale or resolve some trivial incomplete tagsAndrew Morrow2016-03-217-35/+9
|
* SERVER-23103 Break circularity between optime and bson_extractAndrew Morrow2016-03-2121-70/+198
|
* SERVER-23103 Make libcommand not depend on libcuropAndrew Morrow2016-03-219-49/+249
|
* SERVER-23103 Add some missing libdeps edgesAndrew Morrow2016-03-2110-28/+39
|
* SERVER-23103 Unify exit handlingAndrew Morrow2016-03-2131-365/+333
|
* SERVER-23254 eslint.py returns 1 on successful patch lint instead of 0Mike Grundy2016-03-211-3/+9
|
* SERVER-23097 Improve killed executor handling in MapReduceJames Wahlin2016-03-212-23/+24
|
* SERVER-23258 ReplicationCoordinatorImpl::_reportUpstream_inlock() always ↵Benety Goh2016-03-212-17/+14
| | | | releases lock on return.
* SERVER-10902 don't start a thread in intializerMatt Cotter2016-03-211-22/+25
| | | | | curop_test.cpp previously started a thread in MONGO_INITIALIZER but this was blocking future intializations.
* SERVER-21775 NetworkInterface should make stats available to callersWaley Chen2016-03-211-1/+1
| | | | lint fix
* SERVER-22786 add query planner tests for collationDavid Storch2016-03-214-8/+263
|
* SERVER-21775 NetworkInterface should make stats available to callersWaley Chen2016-03-214-8/+84
|
* SERVER-22661 Write a type for ShardIdentityRandolph Tan2016-03-184-0/+398
|
* SERVER-23067 Final round of JS linting and formattingMike Grundy2016-03-18153-505/+505
|
* SERVER-22338 Integrate JavaScript linting into scons lint targetMike Grundy2016-03-182-0/+557
|
* SERVER-23076 Prevent coll_epoch_test1.js from routing inserts to the wrong shardSpencer T Brody2016-03-181-5/+4
|
* SERVER-23137 Remove unused 'allowNetworking' argument from CatalogManager ↵Spencer T Brody2016-03-1815-38/+32
| | | | startup/shutdown
* SERVER-23223 Sharded planCache[List/Clear/Set]Filter commands should check ↵Kaloian Manassiev2016-03-181-74/+54
| | | | collection name
* SERVER-22656 Use RAII classes to enter migrationKaloian Manassiev2016-03-1811-171/+316
| | | | | | | | | | Adds a RAII-style classes to put a shard into migration mode and acquire distributed lock and adds means to register the migration on the global sharding state. Removes references to the global migration source manager from everywhere but the migration code itself. All others will be referencing it from the collection.
* SERVER-23130 rename readOnly flag to querableBackupMode and hide itAdam Midvidy2016-03-186-14/+16
|
* SERVER-22786 update index bounds builder for collationsDavid Storch2016-03-1812-140/+1031
| | | | | | | | The IndexBoundsBuilder must use collator-generated comparison keys when generating bounds for strings, rather than the string itself. The bounds builder also enforces the property that regex predicates cannot use tight bounds if the index has a collation.
* SERVER-23183 remove redundant NULL check in WiredTigerIndex::fullValidateRobert Guo2016-03-181-2/+1
|
* SERVER-17862 Log keyUpdates & writeConflicts only when meaningfulJames Wahlin2016-03-183-5/+13
|
* SERVER-23207 expose additional MongoURI constructorsAdam Midvidy2016-03-171-1/+3
|
* SERVER-20077 requestId field of message header should always be a signed integerWaley Chen2016-03-1720-67/+65
|
* SERVER-22874 network asio operation embeds literal tabs and newlines into ↵Waley Chen2016-03-173-7/+22
| | | | strings
* SERVER-23217 Hang in network_interface_asio_testWaley Chen2016-03-171-2/+2
|
* SERVER-22785 Disallow index use for collation-aware queries that match ↵Tess Avitabile2016-03-172-49/+285
| | | | nested objects or arrays
* SERVER-23182 Suspend sharding_auth tasks on OS X EnterpriseIan Whalen2016-03-171-2/+0
|
* SERVER-22956 abstract ExtentManager constructionAdam Midvidy2016-03-1710-41/+114
|
* SERVER-23121 Fix RHEL ppc64le distro specifics and remove ubuntu1504 distroJonathan Reams2016-03-171-134/+3
|
* SERVER-23198 Build tools with ssl/sasl on POWERJonathan Reams2016-03-171-2/+2
|
* SERVER-22355 add negative tests of write operations to read_only suiteAdam Midvidy2016-03-173-1/+82
|