Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SERVER-13922 remove query yielding and some dbtemprelease | Hari Khalsa | 2014-05-13 | 43 | -652/+19 |
| | |||||
* | SERVER-13899 Forbid whole index scan on plugin index to provide sort | Jason Rassi | 2014-05-13 | 3 | -3/+73 |
| | |||||
* | SERVER-13311 Improve error message for bad numerical values in YAML config | Shaun Verch | 2014-05-13 | 1 | -5/+20 |
| | |||||
* | SERVER-11332 multi host query from fastest host using thread pools | Greg Studer | 2014-05-13 | 6 | -16/+1518 |
| | |||||
* | SERVER-8192 rewritten V1 btree key generation | David Storch | 2014-05-13 | 5 | -174/+484 |
| | |||||
* | Revert "SERVER-11332 multi host query from fastest host using thread pools" | Benety Goh | 2014-05-12 | 6 | -1518/+16 |
| | | | | This reverts commit 03f0d9c627136c6296de400467bbbbd73c9d7a72 | ||||
* | SERVER-11332 multi host query from fastest host using thread pools | Greg Studer | 2014-05-12 | 6 | -16/+1518 |
| | |||||
* | SERVER-12605 update ShardingTest to turn off balancer by default | daveh86 | 2014-05-12 | 1 | -0/+6 |
| | | | | Signed-off-by: Benety Goh <benety@mongodb.com> | ||||
* | SERVER-13640 SERVER-13637: Finish threading TransactionExperiment and fix ↵ | Eliot Horowitz | 2014-05-12 | 22 | -210/+251 |
| | | | | RecordStore handling of tiny docs | ||||
* | SERVER-13896 Stop passing unconsulted "fullObj" parameter to logOp(). | Andy Schwerin | 2014-05-12 | 5 | -10/+5 |
| | |||||
* | add missing header | Mathias Stearn | 2014-05-12 | 1 | -0/+1 |
| | | | | g++4.9 complained with --c++11=off | ||||
* | SERVER-13640 Helper for writing RecordStoreV1 structural tests | Mathias Stearn | 2014-05-12 | 3 | -3/+354 |
| | |||||
* | SERVER-13855 Implement HeapRecordStore | Mathias Stearn | 2014-05-12 | 3 | -0/+588 |
| | |||||
* | SERVER-12461 Ensure LexNumCmp::cmp only returns 1, -1 or 0 | Michael Hudson-Doyle | 2014-05-12 | 1 | -1/+1 |
| | | | | | | | | | | | | | | strncmp's documentation says: It returns an integer less than, equal to, or greater than zero if s1 is found, respectively, to be less than, to match, or be greater than s2. LexNumCmp::cmp is tested as returning only -1, 1 or 0 but returns the return value of strncmp directly. This changes it to clamp the return value to -1, 1 or 0. Signed-off-by: Benety Goh <benety@mongodb.com> | ||||
* | SERVER-13896 No longer pass extraneous arguments to logOpForDbHash(). | Andy Schwerin | 2014-05-12 | 4 | -14/+4 |
| | |||||
* | SERVER-13640: fix capped collections with records < 8 bytes, re-enable test | Eliot Horowitz | 2014-05-10 | 4 | -12/+25 |
| | |||||
* | SERVER-13640: disable capped unit test failin in DEBUG more at the moment | Eliot Horowitz | 2014-05-09 | 1 | -2/+2 |
| | |||||
* | SERVER-13635: fix scale option with dbstats command | Eliot Horowitz | 2014-05-09 | 1 | -1/+2 |
| | |||||
* | SERVER-13637: make Collection::details detailsDeprecated to further hide | Eliot Horowitz | 2014-05-09 | 7 | -16/+23 |
| | |||||
* | SERVER-13892: Compiler Fixes | Mark Benvenuto | 2014-05-09 | 1 | -1/+1 |
| | |||||
* | SERVER-13890 index bounds builder should not pass already-constructed ↵ | David Storch | 2014-05-09 | 3 | -1/+38 |
| | | | | intervals to translate() | ||||
* | SERVER-13754 explode OR solutions for sort | David Storch | 2014-05-09 | 2 | -23/+134 |
| | |||||
* | SERVER-13635: ExtentManager::cacheHint docs | Eliot Horowitz | 2014-05-09 | 1 | -0/+5 |
| | |||||
* | SERVER-13640: first trivial capped collection unit test | Eliot Horowitz | 2014-05-09 | 4 | -1/+98 |
| | |||||
* | SERVER-13635: pull out MAdvise interface, prove capped collection can ↵ | Eliot Horowitz | 2014-05-09 | 9 | -12/+52 |
| | | | | compile in unit test | ||||
* | SERVER-13635: pull out interface for deleting records in capped collection ↵ | Eliot Horowitz | 2014-05-09 | 13 | -62/+137 |
| | | | | during rollover | ||||
* | SERVER-13797 Abstract $where processing and remove usages of getContext | Kaloian Manassiev | 2014-05-09 | 59 | -501/+529 |
| | |||||
* | SERVER-12064 SERVER-12283 Use gcc atomic builtins if available | Robie Basak | 2014-05-09 | 1 | -2/+4 |
| | | | | | | | | | Switch to using gcc atomic builtins for atomic operations if using a new enough gcc and clang and support is available. Otherwise, fall back to the old behaviour of existing non-portable inline assembly to continue to support builds on older versions of gcc. Signed-off-by: Benety Goh <benety@mongodb.com> | ||||
* | Cleanup the BTree logic so it does not use global calls | Kaloian Manassiev | 2014-05-09 | 9 | -39/+145 |
| | | | | Also made some methods private and added comments. | ||||
* | SERVER-13635 Move DocWriter to record_store.h | Mathias Stearn | 2014-05-09 | 2 | -8/+11 |
| | |||||
* | Comment deleted-list bucket sizes in decimal | Mathias Stearn | 2014-05-09 | 1 | -5/+5 |
| | |||||
* | SERVER-13852 initialize IndexBounds::endKeyInclusive in constructor | David Storch | 2014-05-09 | 1 | -1/+1 |
| | |||||
* | SERVER-13715 fix use of auto_ptr after release in subplan runner | David Storch | 2014-05-09 | 1 | -9/+9 |
| | |||||
* | SERVER-13640 Port many namespacetests to recordstore unit tests | Mathias Stearn | 2014-05-08 | 3 | -327/+287 |
| | | | | | This covers all of the tests that needed cheatRecordStore() since they were clearly testing V1 specific implementation details. | ||||
* | SERVER-13635 get deletedRecordFor() out of RecordStore interface | Mathias Stearn | 2014-05-08 | 3 | -7/+3 |
| | |||||
* | SERVER-13614 distlock_test.cpp doesn't handle connectivity exceptions | Siyuan Zhou | 2014-05-08 | 1 | -2/+2 |
| | |||||
* | SERVER-13264 Fix incorrect line endings prior to license update | Ian Whalen | 2014-05-08 | 1 | -28/+28 |
| | |||||
* | SERVER-10516: Mitigate invalid address errors for MapViewOfFileEx | Mark Benvenuto | 2014-05-08 | 1 | -35/+149 |
| | |||||
* | SERVER-13868 Mark V1 users as probed on databases that they do not have ↵ | Spencer T Brody | 2014-05-07 | 2 | -2/+5 |
| | | | | surrogate user docs on | ||||
* | SERVER-13870 Use RAII to prevent memory leaking in shard targeting | Siyuan Zhou | 2014-05-07 | 1 | -5/+5 |
| | |||||
* | SERVER-13794 - only start snapshot thread on isHttpInterfaceEnabled | James Wahlin | 2014-05-07 | 1 | -1/+5 |
| | | | | Signed-off-by: Matt Kangas <matt.kangas@mongodb.com> | ||||
* | SERVER-13851 add a safety invariant to replicated commands to appease coverity | matt dannenberg | 2014-05-07 | 1 | -3/+3 |
| | |||||
* | SERVER-13256: Remove exit functions from pch | Mark Benvenuto | 2014-05-07 | 15 | -15/+56 |
| | |||||
* | Revert "SERVER-13741 Migrate remaining tests to use write commands" | David Storch | 2014-05-06 | 1 | -3/+2 |
| | | | | This reverts commit 87dc3ae516e1d12a632dc604710661e38ed7b3dd. | ||||
* | SERVER-13802: fix insert validation with timestamps | Eliot Horowitz | 2014-05-06 | 2 | -1/+32 |
| | |||||
* | SERVER-13741 Migrate remaining tests to use write commands | Randolph Tan | 2014-05-06 | 1 | -2/+3 |
| | |||||
* | SERVER-13849 remove a logically dead portion of code from initFromConfig() | matt dannenberg | 2014-05-06 | 1 | -3/+0 |
| | |||||
* | SERVER-13789 recursively build data access for subnodes beneath elemMatch | David Storch | 2014-05-06 | 3 | -9/+131 |
| | |||||
* | Improve debugging for Windows RunMongoProgram errors | Mathias Stearn | 2014-05-06 | 1 | -4/+10 |
| | |||||
* | SERVER-13640: free extents in desctrutor | Eliot Horowitz | 2014-05-06 | 1 | -1/+4 |
| |