Files
mongo/jstests/aggregation/optimization/do_not_push_match_past_project.js
Mihai Andrei 1a8480a015 SERVER-95514 Assign more narrow ownership to files under 'jstests/aggregation' (#30660)
GitOrigin-RevId: 494c0fdfadd2f8986333dbf4242462d576439c4b
2025-01-22 20:14:44 +00:00

9 lines
365 B
JavaScript

// SERVER-72651 $match filter is erroneously pushed past $project into COLLSCAN
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());