-
Notifications
You must be signed in to change notification settings - Fork 399
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
Support findAndModify
#548
Support findAndModify
#548
Conversation
Codecov Report
@@ Coverage Diff @@
## main #548 +/- ##
==========================================
+ Coverage 61.80% 63.28% +1.47%
==========================================
Files 122 122
Lines 6928 7157 +229
==========================================
+ Hits 4282 4529 +247
+ Misses 2121 2081 -40
- Partials 525 547 +22
Flags with carried forward coverage won't be shown. Click here to find out more. |
0c7495c
to
f97212a
Compare
…erretDB#555) Bumps [go.mongodb.org/mongo-driver](https://github.com/mongodb/mongo-go-driver) from 1.9.0 to 1.9.1. - [Release notes](https://github.com/mongodb/mongo-go-driver/releases) - [Commits](mongodb/mongo-go-driver@v1.9.0...v1.9.1) --- updated-dependencies: - dependency-name: go.mongodb.org/mongo-driver dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…ers from interface (FerretDB#534) Closes FerretDB#455.
some checks (i.e. inclusion/exclusion) of user input are in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would you please add more tests,
- Cannot specify both an update and remove=true
- Cannot specify both upsert=true and remove=true
- Cannot specify both new=true and remove=true; 'remove' always returns the deleted document
- Cannot specify arrayFilters and remove=true
- Cannot specify arrayFilters and a pipeline update
Thank you.
Thanks, I've missed those checks.
I don't sure we support I've added other 3 tests. |
Thank you!
Maybe mention somewhere in the issue description that the |
|
Closes #164.