Skip to content
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

fix(createCollection): Db.createCollection should pass readConcern to new collection #2026

Merged
merged 13 commits into from
Jun 21, 2019
4 changes: 3 additions & 1 deletion lib/db.js
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,9 @@ Db.prototype.createCollection = deprecateOptions(
if (typeof options === 'function') (callback = options), (options = {});
options = options || {};
options.promiseLibrary = options.promiseLibrary || this.s.promiseLibrary;

options.readConcern = options.readConcern
? new ReadConcern(options.readConcern.level)
: this.readConcern;
const createCollectionOperation = new CreateCollectionOperation(this, name, options);

return executeOperation(this.s.topology, createCollectionOperation, callback);
Expand Down
3 changes: 2 additions & 1 deletion test/functional/view_tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ describe('Views', function() {
expect(commandResult).to.eql({
create: 'test',
viewOn: 'users',
pipeline: [{ $match: {} }]
pipeline: [{ $match: {} }],
readConcern: {}
});

client.close();
Expand Down