summaryrefslogtreecommitdiff
path: root/jstests/aggregation
diff options
context:
space:
mode:
authorSteve Tarzia <steve.tarzia@mongodb.com>2023-01-19 15:28:31 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-01-19 16:55:54 +0000
commit8d6a434730b821ed8256b687ae3c0ebd8777b0cf (patch)
tree12bfc28ee903405aa4d942498c75d97b0faa1498 /jstests/aggregation
parenta42a39f60fa0fa8dc99f2d1d139a37460c000052 (diff)
downloadmongo-8d6a434730b821ed8256b687ae3c0ebd8777b0cf.tar.gz
SERVER-72651 test $match filter erroneously pushed past $project
Diffstat (limited to 'jstests/aggregation')
-rw-r--r--jstests/aggregation/bugs/server72651.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/jstests/aggregation/bugs/server72651.js b/jstests/aggregation/bugs/server72651.js
new file mode 100644
index 00000000000..b4100bdc32c
--- /dev/null
+++ b/jstests/aggregation/bugs/server72651.js
@@ -0,0 +1,12 @@
+// SERVER-72651 $match filter is erroneously pushed past $project into COLLSCAN
+(function() {
+
+const c = db.server72651;
+
+c.drop();
+assert.commandWorked(c.insert({_id: 0, a: 1}));
+// The bug caused the query below to return {"_id" : 0} instead of no documents.
+assert.eq(
+ [],
+ c.aggregate([{$project: {"b": 1}}, {$match: {$expr: {$getField: {$literal: "a"}}}}]).toArray());
+})(); \ No newline at end of file