summaryrefslogtreecommitdiff
path: root/jstests
Commit message (Collapse)AuthorAgeFilesLines
...
* SERVER-57095 Increase number of zones in ↵Luis Osta2021-07-211-1/+2
| | | | resharding_large_number_of_initial_chunks.js
* SERVER-32548 Add $lookup support for sharded viewsAlya Berciu2021-07-213-2/+658
|
* SERVER-58445 Update sharded $lookup tests to reflect shard targeting for ↵Katherine Wu2021-07-211-19/+8
| | | | unsharded collections
* SERVER-58617 Allow updates on time-series collections with no metaFieldAlison Lu2021-07-211-2/+50
|
* SERVER-58683 Simplify config replicaset exposure in shardingtestTommaso Tocci2021-07-2111-51/+29
|
* SERVER-57735 Translate a single update on a time-series collection's ↵Alison Lu2021-07-201-119/+323
| | | | metaField into an update on its buckets collection
* SERVER-58295 disable tests failing due to multiversion issuesVishnu Kaushik2021-07-2034-158/+59
|
* SERVER-50637 Expose reshardDoneCatchUp no-op oplog entry as change eventMatt Walak2021-07-201-3/+31
|
* SERVER-57095 Increase number of zones in ↵Luis Osta2021-07-201-3/+13
| | | | resharding_large_number_of_initial_chunks.js
* SERVER-58442 Clear _startAfterInvalidate when the resume token is observed ↵Rishab Joshi2021-07-201-19/+51
| | | | in DSCSCheckInvalidate
* SERVER-58566 Clean up the shell code so that it does not issue any OP_QUERY ↵Yoonsoo Kim2021-07-205-95/+3
| | | | request except hello/isMaster
* Revert "SERVER-58566 Clean up remaining OP_QUERY code" due to a wrong author ↵Yoonsoo Kim2021-07-205-3/+95
| | | | | | info This reverts commit 3b293a78b0e24c5497464c3979daddfa0792bb55.
* SERVER-57321 Make $mod match expression handle NaN, Infinity and large valuesMindaugas Malinauskas2021-07-202-0/+113
|
* SERVER-58620 New recipient primary can complete migration before donor ↵Vishnu Kaushik2021-07-201-3/+9
| | | | renames collection in tenant_migration_resume_collection_cloner_after_rename.js
* SERVER-58566 Clean up remaining OP_QUERY codeVishnu Kaushik2021-07-205-95/+3
|
* SERVER-58492 Add support for time-series metaField-only deletes with letKris Satya2021-07-191-4/+50
|
* SERVER-57763: Allow partial filter expression to use $geoWithinMaddie Zechar2021-07-191-0/+158
|
* SERVER-58661 Print raw logs in wt_file_helper.js when ↵Gregory Wlodarek2021-07-191-1/+7
| | | | rawMongoProgramOutput() cannot find the string pattern
* SERVER-58390 Add support for time-series metaField-only deletes with collationKris Satya2021-07-191-1/+10
|
* SERVER-58605 Remove unused assumes_autosplit_off test tagTommaso Tocci2021-07-1921-31/+66
|
* SERVER-58591: Better instrumentation for TLS authentication problem during ↵Andrew Shuvalov2021-07-161-0/+3
| | | | concurrent tenant migration
* SERVER-58625 Add multi_update tag to geo_update1.js to exclude from certain ↵Wenbin Zhu2021-07-161-3/+6
| | | | passthrough suites.
* SERVER-58637 Tag null_query_semantics.js as requires_fcv_50David Storch2021-07-161-0/+6
|
* SERVER-56486 Improve SBE multiplannerMihai Andrei2021-07-161-1/+1
| | | | | | | | | | | | | | | This patch introduces a number of improvements to the SBE multiplanner. In particular: - We no longer run plans in round-robin fashion (i.e. switch between plans until each has returned one result, and so on). Instead, each plan runs until it finishes its trial period. - The number of reads is progressively decreased. More precisely, the number of reads used by a plan during is trial period is used as the maximum number of reads for subsequent plans. - Non blocking plans are run before blocking ones. This is a heuristic that limits the amount of work done by a blocking plan as each blocking plan will now be bounded by the smallest number of reads used by a non blocking plan during its trial period.
* SERVER-58495 ensure unique collection names in time-series test ↵Benety Goh2021-07-161-8/+10
| | | | timeseries_list_collections.js
* SERVER-58031 Shorten timeouts in ssl_cluster_ca.jsSpencer Jackson2021-07-161-0/+8
|
* SERVER-57783 update7.js is not resilient to ObjectID wraparoundYuhong Zhang2021-07-161-3/+3
|
* SERVER-58494 ensure unique collection names in time-series test ↵Benety Goh2021-07-161-7/+5
| | | | timeseries_list_collections_filter_name.js
* SERVER-58386 clean up null_query_semantics.js to use different collection ↵Benety Goh2021-07-161-4/+13
| | | | name for each test case
* Revert "SERVER-57763: Allow partial filter expression to use $geoWithin"Uladzimir Makouski2021-07-161-157/+0
| | | | This reverts commit 9aa9f7bec0ebbedea4dc9f3e3369780413dcef7f.
* SERVER-56992 Create FSM workload for interleaved chunk merge & chunk splitSimon Graetzer2021-07-161-0/+243
|
* SERVER-57391 Return error response to OP_QUERY and OP_GET_MORE messagesIrina Yatsenko2021-07-161-36/+0
|
* SERVER-39048, SERVER-57957: ban sharded $lookup and $graphLookup in a ↵Hana Pearlman2021-07-154-37/+66
| | | | transaction
* SERVER-57761 Increment insert opcounter as part of resharding collection cloningHaley Connelly2021-07-151-2/+2
|
* SERVER-57474 profile_operation_metrics.js queries yield less frequentlyGregory Wlodarek2021-07-151-4/+3
|
* SERVER-57276 Capture max/min percent complete in FTDC metrics as seen by the ↵Junhson Jean-Baptiste2021-07-151-2/+17
| | | | commit monitor
* SERVER-58295 delete accidentally re-introduced testsVishnu Kaushik2021-07-155-1066/+0
|
* SERVER-50522 Expose reshardBegin no-op oplog entry as change eventmrwalak2021-07-152-0/+91
|
* SERVER-57462 Change the shell to use OP_MSG for exhaust queries instead of ↵Yoonsoo Kim2021-07-153-14/+76
| | | | OP_QUERY
* SERVER-58331 Add uassert for time-series updates and deletes in multi-doc ↵Kris Satya2021-07-141-0/+48
| | | | transactions
* SERVER-57729 Fixed namespace error when dropping a collectionlukebhan2021-07-141-0/+38
| | | | | | | | | | | | fixed linter ts bucket fix fixed test Deleted empty line changed collection name fixed test naming
* SERVER-57763: Allow partial filter expression to use $geoWithinMaddie Zechar2021-07-141-0/+157
|
* SERVER-58485 Add retry to insert inside transactions to prevent transient errorsMarcos José Grillo Ramirez2021-07-141-8/+13
|
* SERVER-53028 Clean up FCV gating for $dateDiff, $dateAdd, $dateSubtract, ↵Andrii Dobroshynski2021-07-143-94/+3
| | | | $dateTrunc and related system tests now that 5.0 is last LTS
* SERVER-58295 Temporarily disable multiversion tests that fail due to ↵Vishnu Kaushik2021-07-1443-15/+1120
| | | | SERVER-56366
* SERVER-57642 Tag 'jstests/noPassthrough/sample_pushdown_transaction.js' with ↵Mihai Andrei2021-07-141-0/+3
| | | | 'requires_wiredtiger' and 'requires_replication'
* SERVER-56489: New pass-through test with hello server-side delaysAndrew Shuvalov2021-07-144-4/+229
|
* SERVER-58171 Changing time-series granularity does not update view definitionDan Larkin-York2021-07-141-1/+62
|
* Revert "SERVER-57763: Allow partial filter expression to use $geoWithin"Uladzimir Makouski2021-07-141-156/+0
| | | | This reverts commit 129b132138d1e129ef1a3cee31fe0da4b19c8c48.
* Revert "SERVER-57095 Increase number of zones in ↵Uladzimir Makouski2021-07-141-8/+3
| | | | | | resharding_large_number_of_initial_chunks.js" This reverts commit 380e7e9afa83612440e7849e7a2e9b9a61a13e95.