blob: a4f878322acda3e6f6e5c93931fcedb578cddac3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
* When a client calls a mongos command with API parameters, mongos must forward them to shards.
*
* @tags: [
* multiversion_incompatible,
* ]
*/
(function() {
'use strict';
load('jstests/sharding/libs/mongos_api_params_util.js');
MongosAPIParametersUtil.runTests({inTransaction: false, shardedCollection: true});
})();
|