summaryrefslogtreecommitdiff
path: root/jstests/core/wildcard_index_minmax.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/wildcard_index_minmax.js')
-rw-r--r--jstests/core/wildcard_index_minmax.js80
1 files changed, 80 insertions, 0 deletions
diff --git a/jstests/core/wildcard_index_minmax.js b/jstests/core/wildcard_index_minmax.js
new file mode 100644
index 00000000000..14fbbaea42e
--- /dev/null
+++ b/jstests/core/wildcard_index_minmax.js
@@ -0,0 +1,80 @@
+/**
+ * Tests that min/max is not supported for wildcard index.
+ */
+(function() {
+ "use strict";
+
+ load("jstests/aggregation/extras/utils.js"); // For arrayEq.
+
+ const coll = db.wildcard_index_minmax;
+ coll.drop();
+
+ const assertArrayEq = (l, r) => assert(arrayEq(l, r), tojson(l) + " != " + tojson(r));
+
+ assert.commandWorked(coll.insert({a: 1, b: 1}));
+ assert.commandWorked(coll.insert({a: 1, b: 2}));
+ assert.commandWorked(coll.insert({a: 2, b: 1}));
+ assert.commandWorked(coll.insert({a: 2, b: 2}));
+
+ assert.commandWorked(coll.createIndex({"$**": 1}));
+ assert.commandWorked(coll.createIndex({"a": 1}));
+
+ // Throws error for $** index min.
+ assert.commandFailedWithCode(
+ db.runCommand({find: coll.getName(), min: {"a": 0.5}, hint: {"$**": 1}}),
+ ErrorCodes.BadValue);
+
+ // Throws error for $** index max.
+ assert.commandFailedWithCode(
+ db.runCommand({find: coll.getName(), max: {"a": 1.5}, hint: {"$**": 1}}),
+ ErrorCodes.BadValue);
+
+ // Throws error for $** index min/max.
+ assert.commandFailedWithCode(
+ db.runCommand({find: coll.getName(), min: {"a": 0.5}, max: {"a": 1.5}, hint: {"$**": 1}}),
+ ErrorCodes.BadValue);
+
+ // Throws error for $** index min with filter of a different value.
+ assert.commandFailedWithCode(
+ db.runCommand({find: coll.getName(), filter: {"a": 2}, min: {"a": 1}, hint: {"$**": 1}}),
+ ErrorCodes.BadValue);
+
+ // Throws error for $** index max with filter of a different value.
+ assert.commandFailedWithCode(
+ db.runCommand({find: coll.getName(), filter: {"a": 1}, max: {"a": 1.5}, hint: {"$**": 1}}),
+ ErrorCodes.BadValue);
+
+ // Throws error for $** index min and max with filter of a different value.
+ assert.commandFailedWithCode(db.runCommand({
+ find: coll.getName(),
+ filter: {"a": 1},
+ min: {"a": 0.5},
+ max: {"a": 1.5},
+ hint: {"$**": 1}
+ }),
+ ErrorCodes.BadValue);
+
+ // Throws error for $** index min with filter of the same value.
+ assert.commandFailedWithCode(
+ db.runCommand({find: coll.getName(), filter: {"a": 1}, min: {"a": 1}, hint: {"$**": 1}}),
+ ErrorCodes.BadValue);
+
+ // Throws error for $** index max with filter of the same value.
+ assert.commandFailedWithCode(
+ db.runCommand({find: coll.getName(), filter: {"a": 1}, max: {"a": 1}, hint: {"$**": 1}}),
+ ErrorCodes.BadValue);
+
+ // Throws error for $** index min and max with filter of the same value.
+ assert.commandFailedWithCode(db.runCommand({
+ find: coll.getName(),
+ filter: {"a": 1},
+ min: {"a": 1},
+ max: {"a": 1},
+ hint: {"$**": 1}
+ }),
+ ErrorCodes.BadValue);
+
+ // $** index does not interfere with valid min/max.
+ assertArrayEq(coll.find({}, {_id: 0}).min({"a": 0.5}).max({"a": 1.5}).toArray(),
+ [{a: 1, b: 1}, {a: 1, b: 2}]);
+})(); \ No newline at end of file