summaryrefslogtreecommitdiff
path: root/src/mongo/shell/bulk_api.js
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-67043 remove unused TestData.disableBatchWrites reference from ↵Benety Goh2022-06-071-1/+1
| | | | bulk_api.js
* SERVER-63380 JSTest bulk api can create oversized batchesAllison Easton2022-02-171-1/+16
|
* SERVER-57388 Remove readMode/writeMode/rpcProtocols/useLegacyWriteOps shell ↵Yoonsoo Kim2021-07-011-20/+0
| | | | command-line parameters
* SERVER-57512 removed the legacy op and GLE methodsAdityavardhan Agrawal2021-07-011-117/+0
|
* SERVER-58103 Remove test cases which test legacy op behaviorsYoonsoo Kim2021-06-301-114/+1
|
* SERVER-47817 Remove resetError commandAlexandre Bique2021-01-281-15/+13
|
* SERVER-51362 Ensure update and delete shell helpers support 'let' variablesKatherine Wu2020-10-081-0/+10
|
* SERVER-50104 Make the test hook run a background migration on the data used ↵Cheahuychou Mao2020-08-281-1/+1
| | | | by tests
* SERVER-48781 Introduce 'DocumentValidationErrorExtraInfo' and shell support ↵Mihai Andrei2020-07-071-0/+11
| | | | for document validation errors
* Revert "SERVER-48781 Introduce 'DocumentValidationErrorExtraInfo' and shell ↵Mihai Andrei2020-07-021-11/+0
| | | | | | support for document validation errors" This reverts commit 0ab6e8fb4d26b7bbe22d483dbe7850e64013447c.
* SERVER-48781 Introduce 'DocumentValidationErrorExtraInfo' and shell support ↵Mihai Andrei2020-07-011-0/+11
| | | | for document validation errors
* SERVER-41772 Apply clang-format 7.0.1 to the codebaseclang-format-7.0.12019-07-271-18/+8
|
* SERVER-1599 Add support for index hint to update commandXin Hao Zhang2019-06-181-0/+15
|
* SERVER-40408 Ban pipeline-style syntax in the shell's Bulk replaceOne functionBernard Gorman2019-05-101-0/+4
|
* SERVER-40461 fix lintBenety Goh2019-04-241-1/+2
|
* SERVER-40461 implement WriteResult._id for upsertsGabriel Russell2019-04-241-0/+3
|
* SERVER-38937 unify txn override and auto retry on network errorJudah Schvimer2019-04-041-2/+1
|
* SERVER-35094 add new txn states and allow retrying commitTransaction cmdPavi Vetriselvan2018-06-071-1/+1
|
* SERVER-34256 Expose TransientTxnError error labels in response.Siyuan Zhou2018-05-081-0/+3
|
* SERVER-33218 implement txn shell helpers for reads and writesPavi Vetriselvan2018-04-021-1/+2
|
* SERVER-31335 cmd assertions check write errorsKevin Albertson2018-01-111-8/+2
|
* SERVER-24174: Inconsistent rule for storing dotted field namesNick Zolnierz2017-10-121-15/+0
|
* SERVER-30686 Add support for retryWrites=true in the mongo shell.Max Hirschhorn2017-08-301-0/+13
|
* SERVER-29913 Use runCommand() in bulk_api.js for performing writes.Max Hirschhorn2017-08-231-20/+1
| | | | | | Also changes the function override for Mongo.prototype.runCommand() in implicitly_retry_on_database_drop_pending.js to handle the "insert" and "update" command responses.
* SERVER-28576 Add arrayFilters parameter to update and findAndModify shell ↵Tess Avitabile2017-04-041-0/+25
| | | | helpers
* SERVER-25357 expose read concern setter for shell mongo objectMatt Cotter2016-08-121-11/+16
|
* SERVER-19741 WriteError and WriteConcernError are not Error instancesWaley Chen2016-08-101-2/+16
|
* Revert "SERVER-19741 WriteError and WriteConcernError are not Error instances"Waley Chen2016-08-081-6/+0
| | | | This reverts commit f800685a05002ada9388d1fdfd84046ec6dccf70.
* SERVER-19741 WriteError and WriteConcernError are not Error instancesWaley Chen2016-08-081-0/+6
|
* SERVER-23971 Clang-Format codeMark Benvenuto2016-05-281-112/+48
|
* SERVER-23791 extend shell helpers to pass collation parameter to serverDavid Storch2016-05-101-1/+36
| | | | | | | | Includes changes to the following: - Bulk API - CRUD API - DBCollection CRUD methods (e.g. DBCollection.prototype.remove()) - New DBQuery.prototype.collation() method to use with find().
* SERVER-23579 WriteConcern can be called on objectsMatt Cotter2016-04-291-2/+5
| | | | | Previously, to make a WriteConcer({j:true}), it had to be "new"ed. Now WriteConcern can be called on a write concern object.
* SERVER-22469 Format JS code with approved style in src/mongo/shell & ↵Jonathan Abrahams2016-03-091-1056/+1074
| | | | src/mongo/scripting
* SERVER-22340 Fix JS lint errors in src/mongo/ with ESLint --fixMike Grundy2016-02-051-66/+66
|
* SERVER-13393 Improve error message on negative bulk timeoutsAndrew Morrow2015-08-241-1/+1
|
* SERVER-19727 captureStackTrace bulk_api emulationJason Carey2015-08-041-0/+2
| | | | | form stack traces that have more information and look more like v8 captureStackTrace stack traces.
* SERVER-18531 Integrate SpiderMonkeyJason Carey2015-07-141-2/+0
| | | | Provides SpiderMonkey 38.0.1esr as a JS engine for mongo and mongod.
* SERVER-14875 explain helpers for the shellDavid Storch2014-10-131-4/+30
|
* SERVER-13865 handle edge case for v2.4 when upserted _id not returnedGreg Studer2014-05-231-1/+18
|
* SERVER-13394 Fix typo in jValue validation error message in WriteConcern ↵Kamran Khan2014-03-281-1/+1
| | | | | | constructor Signed-off-by: Matt Kangas <matt.kangas@mongodb.com>
* SERVER-13057 push shell write errors more in line with other driversGreg Studer2014-03-181-159/+304
|
* SERVER-12977 disallow empty write batchesGreg Studer2014-03-171-20/+16
| | | | Also fix shell batch processing to avoid extra empty batches.
* SERVER-12954 w parameter is not propagated correctly on compatibility writeModeRandolph Tan2014-03-141-13/+21
| | | | Send resetError only when absolutely necessary.
* SERVER-13001: exclude nModified from legacy write resultsScott Hernandez2014-03-121-5/+9
|
* SERVER-13063 Improved bulk API error messageAndreas Nilsson2014-03-111-1/+1
|
* SERVER-13078 Fixed batch sizes one off in bulk APIAndreas Nilsson2014-03-111-13/+22
|
* SERVER-12786: add shell writeMode optionScott Hernandez2014-02-261-1/+2
|
* SERVER-12668 shell reporting of w:0 write results is uglySiyuan Zhou2014-02-181-9/+17
| | | | Signed-off-by: Matt Kangas <matt.kangas@mongodb.com>
* Bulk find() requires selector, SERVER-12553.A. Jesse Jiryu Davis2014-02-181-11/+16
| | | | | | | | Squashed: - Update comments in bulk_api.js. - Throw Error from invalid Bulk operations, not strings Signed-off-by: Matt Kangas <matt.kangas@mongodb.com>
* SERVER-12702: add writeconcern operation optionScott Hernandez2014-02-171-1/+3
|