blob: 558192f58a70f9a76d50595855091231c0fceedf (
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: true, shardedCollection: true});
})();
|