summaryrefslogtreecommitdiff
path: root/jstests/core/explode_for_sort_fetch.js
blob: 74a929ac60b68f4bbd623d7779c208f36c6d1b90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/**
 * Tests explode for sort query planner behavior when the input query plan contains OR > FETCH >
 * IXSCAN, OR > IXSCAN subtrees or a mix of both.
 */
(function() {
"use strict";

const testDB = db.getSiblingDB(jsTestName());
assert.commandWorked(testDB.dropDatabase());
const coll = testDB.explode_for_sort_fetch;

// Executes a test case that creates indexes, inserts documents, issues a find query on a
// collection and checks the results.
function executeQueryTestCase(testCase) {
    jsTestLog(tojson(testCase));

    // Drop the collection.
    coll.drop();

    // Create indexes.
    assert.commandWorked(coll.createIndexes(testCase.indexes));

    // Insert some documents into the collection.
    assert.commandWorked(coll.insert(testCase.inputDocuments));

    // Issue a find query and compare results to expected.
    assert.eq(coll.find(testCase.filter).sort(testCase.sort).toArray(),
              testCase.expectedResults,
              `Test case ${testCase.name}`);
}

const testCases = [
    {
        // Verifies that query produces correct results when the query plan passed to explode for
        // sort contains subtree of shape OR > FETCH > IXSCAN. Attribute 'f' is fetched by the FETCH
        // stage.
        name: "ExplodeForSortIxscanFetchOr",
        indexes: [{a: 1, b: 1, e: 1}, {c: -1, d: -1, e: -1}],
        filter: {
            $or: [
                {a: {$in: [1, 2]}, b: {$in: [3, 4]}, f: 5},
                {c: {$in: [1, 2]}, d: {$in: [3, 4]}, f: 5}
            ]
        },
        sort: {e: 1},
        inputDocuments: [
            {_id: 3, a: 1, b: 3, f: 5, e: 3},
            {_id: 4, a: 2, b: 4, f: 5, e: 4},
            {_id: 8, a: 1, b: 4, f: 5, e: 8},
            {_id: 1, a: 2, b: 3, f: 5, e: 1},
            {_id: 0, a: 2, b: 3, f: 3, e: 0},
            {_id: 7, c: 1, d: 3, f: 5, e: 7},
            {_id: 6, c: 2, d: 4, f: 5, e: 6},
            {_id: 2, c: 1, d: 4, f: 5, e: 2},
            {_id: 5, c: 2, d: 3, f: 5, e: 5},
            {_id: 9, c: 2, d: 3, f: 3, e: 9},
        ],
        expectedResults: [
            {_id: 1, a: 2, b: 3, f: 5, e: 1},
            {_id: 2, c: 1, d: 4, f: 5, e: 2},
            {_id: 3, a: 1, b: 3, f: 5, e: 3},
            {_id: 4, a: 2, b: 4, f: 5, e: 4},
            {_id: 5, c: 2, d: 3, f: 5, e: 5},
            {_id: 6, c: 2, d: 4, f: 5, e: 6},
            {_id: 7, c: 1, d: 3, f: 5, e: 7},
            {_id: 8, a: 1, b: 4, f: 5, e: 8},
        ]
    },
    {
        // Verifies that query produces correct results when the query plan passed to explode for
        // sort contains a mix of subtrees of shape OR > FETCH > IXSCAN and OR > IXSCAN. Attribute
        // 'f' is fetched by the FETCH stage.
        name: "ExplodeForSortIxscanFetchOrMixedWithIxscanOr",
        indexes: [{a: 1, b: 1, e: 1}, {c: -1, d: 1, e: -1}],
        filter:
            {$or: [{a: {$in: [1, 2]}, b: {$in: [3, 4]}, f: 5}, {c: {$in: [1, 2]}, d: {$in: [3]}}]},
        sort: {e: 1},
        inputDocuments: [
            {_id: 3, a: 1, b: 3, f: 5, e: 3},
            {_id: 4, a: 2, b: 4, f: 5, e: 4},
            {_id: 8, a: 1, b: 4, f: 5, e: 8},
            {_id: 1, a: 2, b: 3, f: 5, e: 1},
            {_id: 0, a: 2, b: 3, f: 3, e: 0},
            {_id: 7, c: 1, d: 3, f: 5, e: 7},
            {_id: 5, c: 2, d: 3, f: 5, e: 5},
            {_id: 9, c: 2, d: 3, f: 3, e: 9},
        ],
        expectedResults: [
            {_id: 1, a: 2, b: 3, f: 5, e: 1},
            {_id: 3, a: 1, b: 3, f: 5, e: 3},
            {_id: 4, a: 2, b: 4, f: 5, e: 4},
            {_id: 5, c: 2, d: 3, f: 5, e: 5},
            {_id: 7, c: 1, d: 3, f: 5, e: 7},
            {_id: 8, a: 1, b: 4, f: 5, e: 8},
            {_id: 9, c: 2, d: 3, f: 3, e: 9},
        ]
    },
    {
        // Verifies that query produces correct results when the query plan passed to explode for
        // sort contains a subtree of shape OR > IXSCAN.
        name: "ExplodeForSortIxscanOr",
        indexes: [{a: 1, b: 1, e: 1}, {c: -1, d: 1, e: -1}],
        filter: {$or: [{a: {$in: [1, 2]}, b: 3}, {c: {$in: [1, 2]}, d: 3}]},
        sort: {e: 1},
        inputDocuments: [
            {_id: 1, a: 1, b: 3, f: 5, e: 1},
            {_id: 3, a: 2, b: 3, f: 5, e: 3},
            {_id: 2, c: 1, d: 3, f: 5, e: 2},
            {_id: 4, c: 2, d: 3, f: 5, e: 4},
        ],
        expectedResults: [
            {_id: 1, a: 1, b: 3, f: 5, e: 1},
            {_id: 2, c: 1, d: 3, f: 5, e: 2},
            {_id: 3, a: 2, b: 3, f: 5, e: 3},
            {_id: 4, c: 2, d: 3, f: 5, e: 4},
        ]
    },
];
testCases.forEach(executeQueryTestCase);
}());