@@ -21,6 +21,8 @@ var inherits = require('util').inherits,
21
21
SessionMixins = require ( './shared' ) . SessionMixins ,
22
22
relayEvents = require ( '../utils' ) . relayEvents ;
23
23
24
+ const collationNotSupported = require ( '../utils' ) . collationNotSupported ;
25
+
24
26
function getSaslSupportedMechs ( options ) {
25
27
if ( ! options ) {
26
28
return { } ;
@@ -748,9 +750,9 @@ Server.prototype.command = function(ns, cmd, options, callback) {
748
750
// If we are not connected or have a disconnectHandler specified
749
751
if ( disconnectHandler ( self , 'command' , ns , cmd , options , callback ) ) return ;
750
752
751
- // Check if we have collation support
752
- if ( this . ismaster && this . ismaster . maxWireVersion < 5 && cmd . collation ) {
753
- return callback ( new MongoError ( f ( ' server %s does not support collation' , this . name ) ) ) ;
753
+ // error if collation not supported
754
+ if ( collationNotSupported ( this , cmd ) ) {
755
+ return callback ( new MongoError ( ` server ${ this . name } does not support collation` ) ) ;
754
756
}
755
757
756
758
// Are we executing against a specific topology
@@ -837,9 +839,9 @@ Server.prototype.update = function(ns, ops, options, callback) {
837
839
// If we are not connected or have a disconnectHandler specified
838
840
if ( disconnectHandler ( self , 'update' , ns , ops , options , callback ) ) return ;
839
841
840
- // Check if we have collation support
841
- if ( this . ismaster && this . ismaster . maxWireVersion < 5 && options . collation ) {
842
- return callback ( new MongoError ( f ( ' server %s does not support collation' , this . name ) ) ) ;
842
+ // error if collation not supported
843
+ if ( collationNotSupported ( this , options ) ) {
844
+ return callback ( new MongoError ( ` server ${ this . name } does not support collation` ) ) ;
843
845
}
844
846
845
847
// Setup the docs as an array
@@ -872,9 +874,9 @@ Server.prototype.remove = function(ns, ops, options, callback) {
872
874
// If we are not connected or have a disconnectHandler specified
873
875
if ( disconnectHandler ( self , 'remove' , ns , ops , options , callback ) ) return ;
874
876
875
- // Check if we have collation support
876
- if ( this . ismaster && this . ismaster . maxWireVersion < 5 && options . collation ) {
877
- return callback ( new MongoError ( f ( ' server %s does not support collation' , this . name ) ) ) ;
877
+ // error if collation not supported
878
+ if ( collationNotSupported ( this , options ) ) {
879
+ return callback ( new MongoError ( ` server ${ this . name } does not support collation` ) ) ;
878
880
}
879
881
880
882
// Setup the docs as an array
0 commit comments