-
Notifications
You must be signed in to change notification settings - Fork 455
CDRIVER-5816: mongoc_bulkwrite_new and mongoc_bulkwrite_set_client #1805
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
Conversation
test_bulkwrite_execute_requires_client, | ||
NULL /* dtor */, | ||
NULL /* ctx */, | ||
test_framework_skip_if_max_wire_version_less_than_25, // require server 8.0 |
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.
test_framework_skip_if_max_wire_version_less_than_25, // require server 8.0 | |
test_framework_skip_if_max_wire_version_less_than_25 // require server 8.0 |
Remove trailing comma to fix error:
../../../src/libmongoc/tests/test-mongoc-bulkwrite.c:718:4: error: expected expression
TestSuite_AddFull (suite,
^
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.
Sorry for not making this a draft PR. I was actually relying on Evergreen to build it since it was difficult to do so directly from my submodule (as opposed to #1803, which I did through a separate fork).
1cb53cd
to
c43ff8a
Compare
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.
The contribution is much appreciated.
@@ -1438,12 +1445,36 @@ _bulkwritereturn_apply_result (mongoc_bulkwritereturn_t *self, | |||
return true; | |||
} | |||
|
|||
void |
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.
Just removed the MONGOC_EXPORT
here per #1806 (comment).
https://jira.mongodb.org/browse/CDRIVER-5816
https://jira.mongodb.org/browse/CDRIVER-5817
Using this to POC the PHPC implementation in PHPC-2478, so there is no rush to review/merge.