summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* SERVER-22340 Fix JS lint errors in src/mongo/ with ESLint --fixMike Grundy2016-02-0516-1036/+1036
|
* SERVER-22341 fix jslint errors in jstests/parallel with eslint --fixMike Grundy2016-02-0511-37/+37
| | | | | Conflicts: jstests/parallel/manyclients.js
* SERVER-22341 fix jslint errors in jstests/tool with eslint --fixMike Grundy2016-02-0521-152/+152
|
* SERVER-22341 fix jslint errors in jstests/sslSpecial with eslint --fixMike Grundy2016-02-052-3/+3
|
* SERVER-22341 fix jslint errors in jstests/ssl with eslint --fixMike Grundy2016-02-0511-53/+53
|
* SERVER-22341 fix jslint errors in jstests/slow2 with eslint --fixMike Grundy2016-02-053-53/+53
|
* SERVER-22341 fix jslint errors in jstests/slow1 with eslint --fixMike Grundy2016-02-052-9/+9
|
* SERVER-22341 fix jslint errors in jstests/replsets with eslint --fixMike Grundy2016-02-0547-124/+124
|
* SERVER-22341 fix jslint errors in jstests/repl with eslint --fixMike Grundy2016-02-0515-72/+72
|
* SERVER-22341 fix jslint errors in jstests/readonly with eslint --fixMike Grundy2016-02-051-2/+2
|
* SERVER-22341 fix jslint errors in jstests/perf with eslint --fixMike Grundy2016-02-053-6/+6
|
* SERVER-22341 fix jslint errors in jstests/noPassthroughWithMongod with ↵Mike Grundy2016-02-0534-204/+204
| | | | eslint --fix
* SERVER-22341 fix jslint errors in jstests/noPassthrough with eslint --fixMike Grundy2016-02-0520-242/+242
|
* SERVER-22341 fix jslint errors in jstests/multiVersion with eslint --fixMike Grundy2016-02-0513-92/+92
|
* SERVER-22341 fix jslint errors in jstests/mmap_v1 with eslint --fixMike Grundy2016-02-0511-27/+27
|
* SERVER-22341 fix jslint errors in jstests/libs with eslint --fixMike Grundy2016-02-058-166/+166
|
* SERVER-22341 fix jslint errors in jstests/httpinterface with eslint --fixMike Grundy2016-02-051-2/+2
|
* SERVER-22341 fix jslint errors in jstests/gle with eslint --fixMike Grundy2016-02-057-38/+38
|
* SERVER-22341 fix jslint errors in jstests/dur with eslint --fixMike Grundy2016-02-054-9/+9
|
* SERVER-22341 fix jslint errors in jstests/disk with eslint --fixMike Grundy2016-02-0510-19/+19
|
* SERVER-22341 fix jslint errors in jstests/concurrency with eslint --fixMike Grundy2016-02-052-4/+4
|
* SERVER-22341 fix jslint errors in jstests/auth with eslint --fixMike Grundy2016-02-0525-102/+102
|
* SERVER-22341 fix jslint errors in jstests/aggregation with eslint --fixMike Grundy2016-02-0522-51/+51
|
* SERVER-18826 Rename WorkingSet State Names from LOC to RIDJames Wahlin2016-02-0548-382/+384
| | | | | | Also renamed: * WorkingSetMember::hasLoc() -> WorkingSetMember::hasRecordId * WorkingSetMember::loc -> WorkingSetMember::recordId
* SERVER-22276 ensure replset member sets durable optime on initiatematt dannenberg2016-02-051-0/+3
|
* SERVER-22349 Throw exceptions from loadStoredJason Carey2016-02-051-8/+3
| | | | | | | | | | | The JS engine's loadStored eats exceptions that occur while it's loading functions from system.js. This also eats interruption exceptions, which can lead to a situation where a map reduce job is killed during loadStored, but the interrupt is lost. For tests where the map or reduce stages are long or non-terminating, and we rely on killing them, this can lead to hangs. Removing the try/catch block around loadStored fixes this behavior.
* SERVER-22287 added replica set ID validation to heartbeat response ↵Benety Goh2016-02-0511-3/+450
| | | | processing, replSetReconfigure and replica set quorum check.
* SERVER-22287 build ReplSetTest._alldbpaths using actual dbpath from ↵Benety Goh2016-02-051-8/+4
| | | | MongoRunner.runMongod result
* SERVER-22287 added replicaSetId field to replica set configuration and metadata.Benety Goh2016-02-058-26/+219
| | | | This field is generated when a replica set configuration is created from the replSetInitiate command
* SERVER-21476 ChunkVersion assumes little endianJason Carey2016-02-051-20/+13
| | | | | | Alter ChunkVersion to rely on bit arithmetic on a 64 bit unsigned, rather than union type punning, to extract the minor and major versions. This improves portability on big endian systems.
* SERVER-22366: Update mongo-perf baselinesdalyd2016-02-051-1/+1
|
* SERVER-22475 Reduce concurrency in manyclients.jsJason Carey2016-02-051-2/+2
| | | | Drop from 100 to 50 to lower the memory pressure.
* SERVER-20792 Only negate term if directly proceeded by hyphen.Charlie Swanson2016-02-043-7/+130
| | | | | | For example, the term "documentation" should be negated in the text query "MongoDB -documentation", but should not be negated in the text query "MongoDB - documentation".
* SERVER-20536 Ignore comment field when planning counts.Charlie Swanson2016-02-047-94/+184
|
* SERVER-21632 Add test to stress $sample as first stageCharlie Swanson2016-02-041-0/+71
|
* Import wiredtiger-wiredtiger-2.7.0-592-gcc96d99.tar.gz from wiredtiger ↵Alex Gorrod2016-02-0591-1061/+1260
| | | | | | | | | | | | | | | | | | | | | | | branch mongodb-3.4 ref: 7fea169..cc96d99 WT-60 Big endian port WT-2130 Improve on-disk page utlilization with random workloads WT-2215 WT_LSN needs to support atomic reads and updates WT-2295 WT_SESSION.create does a full-scan of the main table WT-2352 Allow build and test without requiring lz4 WT-2356 Log scan advances to next log file on partially written record WT-2363 Remove built in support for bzip2 WT-2368 Row-store can pass garbage keys to collator functions WT-2369 Use C compiler to detect headers instead of C++ compiler WT-2371 Parent split cannot access the page after page-index swap WT-2372 WiredTiger windows builder fails with C4005 against the "inline" macro WT-2377 WTPERF doesn't compile in Windows under MSVC WT-2378 Tasks time out on LSM builder SERVER-22388 WiredTiger changes for MongoDB 3.3.2 SERVER-22437 Coverity analysis defect 77704: Redundant test SERVER-22438 Coverity analysis defect 77705: Dereference before null check
* SERVER-12747 Add field to command result _after_ collection is created.Max Hirschhorn2016-02-041-2/+4
| | | | | | It's possible for Database::createCollection() to throw an exception after the "createdCollectionAutomatically" field has been added to the BSONObjBuilder& result object in the "createIndexes" command.
* SERVER-12941 Improve error messages from "createIndexes" command.Max Hirschhorn2016-02-041-3/+12
|
* SERVER-16097 invariant(_collection) in DeleteStage::doRestoreState().Max Hirschhorn2016-02-041-0/+1
| | | | A plan stage should only yield if the collection exists.
* SERVER-20352 Correctly check for errors from ↵Mathias Stearn2016-02-041-2/+5
| | | | boost::filesystem::create_directories
* SERVER-22269 fix formatRandolph Tan2016-02-041-1/+1
|
* SERVER-22458: Return TypeBits size bytes values up to kMaxBytesNeededGeert Bosch2016-02-041-1/+1
|
* SERVER-22269 make ReadConcern: majority reflect journaled state on PRIMARYmatt dannenberg2016-02-0425-31/+250
|
* SERVER-22276 SERVER-22277 implement "j" flag in write concern apply to ↵matt dannenberg2016-02-0471-684/+2981
| | | | secondary as well as primary
* SERVER-22297 Add framework for writing tests that perform CSRS upgrade, ↵Spencer T Brody2016-02-043-315/+317
| | | | convert existing tests to use it
* SERVER-22474 rollback needs to wait longer than the 30 second vote timeoutEric Milkie2016-02-041-1/+1
|
* SERVER-22472 wait longer for write concern, for slow hostsEric Milkie2016-02-041-1/+1
|
* SERVER-13411 parallelCollectionScan takes maxTimeMSTess Avitabile2016-02-042-0/+15
|
* SERVER-22453 Fixing race condition in ↵Dianna Hohensee2016-02-041-4/+4
| | | | donor_shard_abort_and_start_new_migration.js between aborting first migration and starting second migration.
* SERVER-15482 Reject bad inputs to size operatorTess Avitabile2016-02-043-31/+68
|