-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$and Operator Error #1559
Open
saurabhprasadsah
wants to merge
1,949
commits into
mongodb:v7.0
Choose a base branch
from
saurabhprasadsah:master
base: v7.0
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
$and Operator Error #1559
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ch mongodb-master ref: d70d6394cf..62cb7393bd for: 7.1.0-rc0 WT-9840 Verify fails after salvage of FLCS
…ch mongodb-master ref: 62cb7393bd..0596db6d92 for: 7.1.0-rc0 WT-11207 Force timestamped transactions for 4.2 in compatibility testing
…ch mongodb-master ref: 0596db6d92..3fec160f84 for: 7.1.0-rc0 WT-11168 Remove page image reuse logic
Co-authored-by: Charlie Swanson <[email protected]> Testing multiline comment and co-author in merge message.
…ping fields -- updated
…r command to 'samplesPerSecond'
…s to pass tenantId()
…tFCV command After SERVER-77387, an ongoing createIndex command can be aborted with error 'IndexBuildAborted' if a setFeatureCompatibilityVersion command is run at the same time. This only occurs in suite fcv_upgrade_downgrade_replica_sets_jscore_passthrough which sends setFCV command continously. In that suite, we should retry any createIndex command that failed with that error.
…und grouping fields -- updated" This reverts commit 288a08f.
…o acceptable errors in write without shard key concurrency tests
…sts covering all commands
…tchExtraReservedBytes
…_optimizations_for_read_only_shards.js
…in fcv up/downgrade suite
…on in a more linear form
… rollback handler
…_function_percentile_bm
…exes of sharded collections
This reverts commit a10a79d.
This reverts commit 9637f5c.
…harding_last_lts_mongos_and_mixed_shards suite with config shard enabled
…ion for unprepared transactions rather than delegating to OpObserverImpl This commit also moves the oplog reservation logic, which is used for generating the applyOps entry information, out of OpObserverImpl into TransactionParticipant.
…o use a smaller document size
…s validation account for retries in transaction suites
…grade hook Add two sharded test suites fcv_upgrade_downgrade_sharding_jscore_passthrough and fcv_upgrade_downgrade_sharded_collections_jscore_passthrough, which will run a background hook to perform repeated fcv upgrade/downgrade while the tests are running.
… number of orphaned documents <= total number of documents
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
when two condition will be apply:
$and ->operator:
db.emp.find({$and:[{'sal':{$get:5000}},{'dept':'coding'}]})
without $and opeartor:
same result will be shown
db.emp.find({'sal':{$get:5000}},{'dept':'coding'})