-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy pathgroup_with_top_bottom_to_distinct_scan.js
774 lines (714 loc) · 30.3 KB
/
group_with_top_bottom_to_distinct_scan.js
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
/**
* $group stages with only $top or only $bottom accumulators can sometimes be converted into a
* DISTINCT_SCAN (see SERVER-84347). This optimization potentially applies to a $group when it
* begins the pipeline or when it is preceded only by $match. In all cases, it must be possible to
* do a DISTINCT_SCAN that sees each value of the distinct field exactly once among matching
* documents and also provides any requested sort ('sortBy' field). The test queries below show most
* $match/$group combinations where that is possible.
*/
import {
addIndex,
assertPipelineResultsAndExplain,
assertPlanDoesNotUseDistinctScan,
assertPlanUsesCollScan,
assertPlanUsesDistinctScan,
assertPlanUsesIndexScan,
removeIndex,
} from "jstests/libs/query/group_to_distinct_scan_utils.js";
export function runGroupWithTopBottomToDistinctScanTests(database, queryHashes) {
// TODO SERVER-100039: replace this with passthrough suite for validating query hashes.
let i = 0;
function assertPipelineResultsAndExplainAndQueryHash(test) {
const {pipeline, expectedOutput, validateExplain, options} = test;
assertPipelineResultsAndExplain({
pipeline,
expectedOutput,
validateExplain: (explain) => {
validateExplain(explain);
assert.eq(explain.queryShapeHash, queryHashes[i]);
i++;
},
options
});
}
/**
* The tests below should only pass once distinct scan for $top and $bottom accumulators is
* achieved.
*/
// Verifies that a $group pipeline can use DISTINCT_SCAN when the sort within a $top accumulator
// is available from an index.
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{$group: {_id: "$a", accum: {$top: {output: "$b", sortBy: {a: 1, b: 1}}}}}],
expectedOutput: [{_id: null, accum: null}, {_id: 1, accum: 1}, {_id: 2, accum: 2}],
validateExplain: (explain) =>
assertPlanUsesDistinctScan(database, explain, {a: 1, b: 1, c: 1}),
});
// Verifies that a $group pipeline can use DISTINCT_SCAN when the sort within a $bottom
// accumulator is available from an index.
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{$group: {_id: "$a", accum: {$bottom: {output: "$b", sortBy: {a: 1, b: 1}}}}}],
expectedOutput: [{_id: null, accum: 1}, {_id: 1, accum: 3}, {_id: 2, accum: 2}],
validateExplain: (explain) =>
assertPlanUsesDistinctScan(database, explain, {a: 1, b: 1, c: 1}),
});
//
// Verifies that a $group pipeline can use DISTINCT_SCAN when sorting by fields with dotted
// paths.
//
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{
$group:
{_id: "$foo.a", accum: {$top: {sortBy: {"foo.a": 1, "foo.b": 1}, output: "$foo.b"}}}
}],
expectedOutput: [
{_id: null, accum: null},
{_id: 1, accum: 1},
{_id: 2, accum: 2},
{_id: 3, accum: null}
],
validateExplain: (explain) =>
assertPlanUsesDistinctScan(database, explain, {"foo.a": 1, "foo.b": 1}),
});
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{
$group: {
_id: "$foo.a",
accum: {$bottom: {sortBy: {"foo.a": 1, "foo.b": 1}, output: "$foo.b"}}
}
}],
expectedOutput:
[{_id: null, accum: 1}, {_id: 1, accum: 2}, {_id: 2, accum: 2}, {_id: 3, accum: null}],
validateExplain: (explain) =>
assertPlanUsesDistinctScan(database, explain, {"foo.a": 1, "foo.b": 1}),
});
//
// Verifies that we _do not_ attempt to use a DISTINCT_SCAN on a multikey dotted-path field.
//
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [
{$sort: {"mkFoo.a": 1, "mkFoo.b": 1}},
{$group: {_id: "$mkFoo.a", accum: {$first: "$mkFoo.b"}}}
],
expectedOutput: [
{_id: null, accum: null},
{_id: 1, accum: 1},
{_id: 2, accum: 2},
{_id: [3, 4], accum: [4, 3]}
],
validateExplain: assertPlanDoesNotUseDistinctScan,
});
//
// Verifies that we use a DISTINCT_SCAN to satisfy a sort on a multikey field if the bounds
// are [minKey, maxKey].
//
assertPipelineResultsAndExplainAndQueryHash({
pipeline:
[{$group: {_id: "$aa", accum: {$top: {sortBy: {aa: 1, mkB: 1}, output: "$mkB"}}}}],
expectedOutput: [{_id: null, accum: null}, {_id: 1, accum: [1, 3]}, {_id: 2, accum: []}],
validateExplain: (explain) => {
assertPlanUsesDistinctScan(database, explain, {aa: 1, mkB: 1, c: 1}, true);
}
});
assertPipelineResultsAndExplainAndQueryHash({
pipeline:
[{$group: {_id: "$aa", accum: {$top: {sortBy: {aa: -1, mkB: -1}, output: "$mkB"}}}}],
expectedOutput: [{_id: null, accum: null}, {_id: 1, accum: [1, 3]}, {_id: 2, accum: []}],
validateExplain: (explain) => {
assertPlanUsesDistinctScan(database, explain, {aa: 1, mkB: 1, c: 1}, true);
}
});
assertPipelineResultsAndExplainAndQueryHash({
pipeline:
[{$group: {_id: "$aa", accum: {$bottom: {sortBy: {aa: -1, mkB: -1}, output: "$mkB"}}}}],
expectedOutput: [{_id: null, accum: null}, {_id: 1, accum: 2}, {_id: 2, accum: []}],
validateExplain: assertPlanDoesNotUseDistinctScan
});
//
// Verifies that with dotted paths we use a DISTINCT_SCAN to satisfy a sort on a multikey field
// if the bounds are [minKey, maxKey].
//
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{
$group: {
_id: "$foo.a",
accum: {$top: {sortBy: {"foo.a": 1, "mkFoo.b": 1}, output: "$mkFoo.b"}}
}
}],
expectedOutput: [
{_id: null, accum: null},
{_id: 1, accum: 1},
{_id: 2, accum: 2},
{_id: 3, accum: [4, 3]}
],
validateExplain: (explain) => {
assertPlanUsesDistinctScan(database, explain, {"foo.a": 1, "mkFoo.b": 1}, true);
},
});
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{
$group: {
_id: "$foo.a",
accum: {$bottom: {sortBy: {"foo.a": 1, "mkFoo.b": -1}, output: "$mkFoo.b"}}
}
}],
expectedOutput: [
{_id: null, accum: null},
{_id: 1, accum: 1},
{_id: 2, accum: 2},
{_id: 3, accum: [4, 3]}
],
validateExplain: assertPlanUsesCollScan,
});
//
// Verifies that we _do not_ attempt a DISTINCT_SCAN to satisfy a sort on a multikey field if
// the bounds are not [minKey, maxKey].
//
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [
{$match: {mkB: {$ne: 9999}}},
{$group: {_id: "$aa", accum: {$top: {sortBy: {aa: 1, mkB: 1}, output: "$mkB"}}}}
],
expectedOutput: [{_id: 1, accum: [1, 3]}, {_id: null, accum: null}, {_id: 2, accum: []}],
validateExplain: assertPlanDoesNotUseDistinctScan,
});
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [
{$match: {mkB: {$gt: -5}}},
{$group: {_id: "$aa", accum: {$top: {sortBy: {aa: 1, mkB: 1}, output: "$mkB"}}}}
],
expectedOutput: [{_id: 1, accum: [1, 3]}],
validateExplain: assertPlanDoesNotUseDistinctScan,
});
// Repeats above tests for $last.
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [
{$match: {mkB: {$ne: 9999}}},
{$group: {_id: "$aa", accum: {$bottom: {sortBy: {aa: 1, mkB: 1}, output: "$mkB"}}}}
],
expectedOutput: [{_id: null, accum: null}, {_id: 1, accum: 2}, {_id: 2, accum: []}],
validateExplain: assertPlanDoesNotUseDistinctScan,
});
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [
{$match: {mkB: {$gt: -5}}},
{$group: {_id: "$aa", accum: {$bottom: {sortBy: {aa: 1, mkB: 1}, output: "$mkB"}}}}
],
expectedOutput: [{_id: 1, accum: 2}],
validateExplain: assertPlanDoesNotUseDistinctScan,
});
//
// Verifies that with dotted paths we _do not_ attempt a DISTINCT_SCAN to satisfy a sort on a
// multikey field if the bounds are not [minKey, maxKey].
//
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [
{$match: {"mkFoo.b": {$ne: 20000}}},
{
$group: {
_id: "$foo.a",
accum: {$top: {sortBy: {"foo.a": 1, "mkFoo.b": 1}, output: "$mkFoo.b"}}
}
}
],
expectedOutput: [
{_id: null, accum: null},
{_id: 1, accum: 1},
{_id: 2, accum: 2},
{_id: 3, accum: [4, 3]}
],
validateExplain: assertPlanDoesNotUseDistinctScan,
});
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [
{$match: {"mkFoo.b": {$ne: 20000}}},
{
$group: {
_id: "$foo.a",
accum: {$bottom: {sortBy: {"foo.a": 1, "mkFoo.b": -1}, output: "$mkFoo.b"}}
}
}
],
expectedOutput: [
{_id: null, accum: null},
{_id: 1, accum: 1},
{_id: 2, accum: 2},
{_id: 3, accum: [4, 3]}
],
validateExplain: assertPlanDoesNotUseDistinctScan,
});
//
// Verifies that we can use a DISTINCT_SCAN on a multikey index to group with $top or $bottom
// with sortBy a dotted-path field, so long as the field we are sorting over is not multikey and
// comes before any multikey fields in the index key pattern.
//
// We drop the {"foo.a": 1, "foo.b": 1} to force this test to use the multikey
// {"foo.a": 1, "mkFoo.b"} index. The rest of the test doesn't use either of those indexes.
//
removeIndex({"foo.a": 1, "foo.b": 1});
//
// Verifies that a $group pipeline can use DISTINCT_SCAN even when there is a $top accumulator
// that accesses a multikey field.
//
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{$group: {_id: "$aa", accum: {$top: {sortBy: {aa: 1, bb: 1}, output: "$mkB"}}}}],
expectedOutput: [{_id: null, accum: null}, {_id: 1, accum: [1, 3]}, {_id: 2, accum: []}],
validateExplain: (explain) =>
assertPlanUsesDistinctScan(database, explain, {aa: 1, bb: 1, c: 1}),
});
//
// Verifies that a $group pipeline can use DISTINCT_SCAN when there is a $bottom accumulator
// that accesses a multikey field, provided that field is not part of the index.
//
assertPipelineResultsAndExplainAndQueryHash({
pipeline:
[{$group: {_id: "$aa", accum: {$bottom: {sortBy: {aa: 1, bb: 1}, output: "$mkB"}}}}],
expectedOutput: [{_id: 1, accum: 2}, {_id: 2, accum: []}, {_id: null, accum: null}],
validateExplain: (explain) =>
assertPlanUsesDistinctScan(database, explain, {aa: 1, bb: 1, c: 1}),
});
//
// Verifies that a $group pipeline can use DISTINCT_SCAN even when there is a $top accumulator
// that includes an expression.
//
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{
$group:
{_id: "$a", accum: {$top: {sortBy: {a: 1, b: 1}, output: {$add: ["$b", "$c"]}}}}
}],
expectedOutput: [{_id: null, accum: null}, {_id: 1, accum: 2}, {_id: 2, accum: 4}],
validateExplain: (explain) =>
assertPlanUsesDistinctScan(database, explain, {a: 1, b: 1, c: 1}),
});
//
// Verifies that a $group pipeline can use DISTINCT_SCAN even when there is a $bottom
// accumulator that includes an expression.
//
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [
{
$group: {
_id: "$a",
accum: {$bottom: {sortBy: {a: 1, b: 1}, output: {$add: ["$b", "$c"]}}}
}
},
/* There are 2 documents with {a: null}, one of which is missing that key entirely.
* Because those compare equal, we don't know whether the $last one will be the one
* matching {c: 1} or {c: 1.5}. To make the test deterministic, we add 0.6 to
* whatever result we get and round it to the nearest integer. */
{$project: {_id: "$_id", accum: {$round: [{$add: ["$accum", 0.6]}, 0]}}}
],
expectedOutput: [{_id: null, accum: 3.0}, {_id: 1, accum: 6}, {_id: 2, accum: 5}],
validateExplain: (explain) =>
assertPlanUsesDistinctScan(database, explain, {a: 1, b: 1, c: 1}),
});
//
// Verifies that a $group can use a DISTINCT_SCAN even when the requested sort is the reverse of
// the index's sort.
//
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{$group: {_id: "$a", accum: {$top: {sortBy: {a: -1, b: -1}, output: "$b"}}}}],
expectedOutput: [{_id: null, accum: 1}, {_id: 1, accum: 3}, {_id: 2, accum: 2}],
validateExplain: (explain) =>
assertPlanUsesDistinctScan(database, explain, {a: 1, b: 1, c: 1}),
});
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{$group: {_id: "$a", accum: {$bottom: {sortBy: {a: -1, b: -1}, output: "$b"}}}}],
expectedOutput: [{_id: null, accum: null}, {_id: 1, accum: 1}, {_id: 2, accum: 2}],
validateExplain: (explain) =>
assertPlanUsesDistinctScan(database, explain, {a: 1, b: 1, c: 1}),
});
//
// Verifies that a $group pipeline _does not_ use DISTINCT_SCAN when there are both $top and
// $bottom accumulators.
//
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{
$group: {
_id: "$a",
f: {$top: {sortBy: {a: -1, b: -1}, output: "$b"}},
l: {$bottom: {sortBy: {a: -1, b: -1}, output: "$b"}}
}
}],
expectedOutput: [{_id: null, f: 1, l: null}, {_id: 1, f: 3, l: 1}, {_id: 2, f: 2, l: 2}],
validateExplain: assertPlanDoesNotUseDistinctScan
});
//
// Verifies that a $group pipeline with multiple $top accumulators uses DISTINCT_SCAN.
//
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{
$group: {
_id: "$a",
f1: {$top: {sortBy: {a: -1, b: -1}, output: "$b"}},
f2: {$top: {sortBy: {a: -1, b: -1}, output: "$b"}}
}
}],
expectedOutput: [{_id: null, f1: 1, f2: 1}, {_id: 1, f1: 3, f2: 3}, {_id: 2, f1: 2, f2: 2}],
validateExplain: (explain) =>
assertPlanUsesDistinctScan(database, explain, {a: 1, b: 1, c: 1}),
});
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{
$group: {
_id: "$a",
fb: {$top: {sortBy: {a: -1, b: -1, c: -1}, output: "$b"}},
fc: {$top: {sortBy: {a: -1, b: -1, c: -1}, output: "$c"}}
}
}],
expectedOutput:
[{_id: null, fb: 1, fc: 1.5}, {_id: 1, fb: 3, fc: 2}, {_id: 2, fb: 2, fc: 2}],
validateExplain: (explain) =>
assertPlanUsesDistinctScan(database, explain, {a: 1, b: 1, c: 1}),
});
//
// Verifies that a $group pipeline with multiple $bottom accumulators uses DISTINCT_SCAN.
//
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{
$group: {
_id: "$a",
l1: {$bottom: {sortBy: {a: -1, b: -1}, output: "$b"}},
l2: {$bottom: {sortBy: {a: -1, b: -1}, output: "$b"}}
}
}],
expectedOutput:
[{_id: null, l1: null, l2: null}, {_id: 1, l1: 1, l2: 1}, {_id: 2, l1: 2, l2: 2}],
validateExplain: (explain) =>
assertPlanUsesDistinctScan(database, explain, {a: 1, b: 1, c: 1}),
});
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{
$group: {
_id: "$a",
lb: {$bottom: {sortBy: {a: -1, b: -1, c: -1}, output: "$b"}},
lc: {$bottom: {sortBy: {a: -1, b: -1, c: -1}, output: "$c"}}
}
}],
expectedOutput:
[{_id: null, lb: null, lc: null}, {_id: 1, lb: 1, lc: 1}, {_id: 2, lb: 2, lc: 2}],
validateExplain: (explain) =>
assertPlanUsesDistinctScan(database, explain, {a: 1, b: 1, c: 1}),
});
//
// Verifies that a $group with mixed accumulators out of $top/$bottom/$first/$last _does not_
// use DISTINCT_SCAN.
//
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{
$group: {
_id: "$a",
t: {$top: {sortBy: {a: -1, b: -1}, output: "$b"}},
b: {$bottom: {sortBy: {a: -1, b: -1}, output: "$b"}}
}
}],
expectedOutput: [{_id: null, t: 1, b: null}, {_id: 1, t: 3, b: 1}, {_id: 2, t: 2, b: 2}],
validateExplain: (explain) => assertPlanUsesCollScan(explain, {a: 1, b: 1, c: 1}),
});
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [
{$sort: {a: -1, b: -1}},
{
$group: {
_id: "$a",
t: {$top: {sortBy: {a: -1, b: -1}, output: "$b"}},
f: {$first: "$b"}
}
}
],
expectedOutput: [{_id: null, t: 1, f: 1}, {_id: 1, t: 3, f: 3}, {_id: 2, t: 2, f: 2}],
validateExplain: (explain) => assertPlanUsesIndexScan(explain, {a: 1, b: 1, c: 1}),
});
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [
{$sort: {a: -1, b: -1}},
{
$group:
{_id: "$a", t: {$top: {sortBy: {a: -1, b: -1}, output: "$b"}}, l: {$last: "$b"}}
}
],
expectedOutput: [{_id: null, t: 1, l: null}, {_id: 1, t: 3, l: 1}, {_id: 2, t: 2, l: 2}],
validateExplain: (explain) => assertPlanUsesIndexScan(explain, {a: 1, b: 1, c: 1}),
});
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [
{$sort: {a: -1, b: -1}},
{
$group: {
_id: "$a",
b: {$bottom: {sortBy: {a: -1, b: -1}, output: "$b"}},
l: {$last: "$b"}
}
}
],
expectedOutput: [{_id: null, b: null, l: null}, {_id: 1, b: 1, l: 1}, {_id: 2, b: 2, l: 2}],
validateExplain: (explain) => assertPlanUsesIndexScan(explain, {a: 1, b: 1, c: 1}),
});
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [
{$sort: {a: -1, b: -1}},
{
$group: {
_id: "$a",
b: {$bottom: {sortBy: {a: -1, b: -1}, output: "$b"}},
f: {$first: "$b"}
}
}
],
expectedOutput: [{_id: null, b: null, f: 1}, {_id: 1, b: 1, f: 3}, {_id: 2, b: 2, f: 2}],
validateExplain: (explain) => assertPlanUsesIndexScan(explain, {a: 1, b: 1, c: 1}),
});
assertPipelineResultsAndExplainAndQueryHash({
pipeline:
[{$sort: {a: -1, b: -1}}, {$group: {_id: "$a", f: {$first: "$b"}, l: {$last: "$b"}}}],
expectedOutput: [{_id: null, f: 1, l: null}, {_id: 1, f: 3, l: 1}, {_id: 2, f: 2, l: 2}],
validateExplain: (explain) => assertPlanUsesIndexScan(explain, {a: 1, b: 1, c: 1}),
});
//
// Verifies that a $group pipeline _does not_ use DISTINCT_SCAN when documents are not sorted by
// the field used for grouping.
//
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{$group: {_id: "$a", accum: {$top: {sortBy: {b: 1}, output: "$b"}}}}],
expectedOutput: [{_id: null, accum: null}, {_id: 1, accum: 1}, {_id: 2, accum: 2}],
validateExplain: assertPlanDoesNotUseDistinctScan,
});
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{$group: {_id: "$a", accum: {$bottom: {sortBy: {b: -1}, output: "$b"}}}}],
expectedOutput: [{_id: null, accum: null}, {_id: 1, accum: 1}, {_id: 2, accum: 2}],
validateExplain: assertPlanDoesNotUseDistinctScan,
});
//
// Verifies that a $group pipeline with a $top accumulator can use DISTINCT_SCAN, even when the
// group _id field is a singleton object instead of a fieldPath.
//
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{$group: {_id: {v: "$a"}, accum: {$top: {sortBy: {a: 1, b: 1}, output: "$b"}}}}],
expectedOutput:
[{_id: {v: null}, accum: null}, {_id: {v: 1}, accum: 1}, {_id: {v: 2}, accum: 2}],
validateExplain: (explain) =>
assertPlanUsesDistinctScan(database, explain, {a: 1, b: 1, c: 1}),
});
//
// Verifies that a $group pipeline with a $bottom accumulator can use DISTINCT_SCAN, even when
// the group _id field is a singleton object instead of a fieldPath.
//
assertPipelineResultsAndExplainAndQueryHash({
pipeline:
[{$group: {_id: {v: "$a"}, accum: {$bottom: {sortBy: {a: 1, b: 1}, output: "$b"}}}}],
expectedOutput:
[{_id: {v: null}, accum: 1}, {_id: {v: 1}, accum: 3}, {_id: {v: 2}, accum: 2}],
validateExplain: (explain) =>
assertPlanUsesDistinctScan(database, explain, {a: 1, b: 1, c: 1}),
});
////////////////////////////////////////////////////////////////////////////////////////////////
// We execute all the collation-related tests three times with three different configurations
// (no index, index without collation, index with collation).
//
// Collation tests 1: no index on string field.
////////////////////////////////////////////////////////////////////////////////////////////////
const collationOption = {collation: {locale: "en_US", strength: 2}};
//
// Verifies that a $group pipeline uses a collection scan.
//
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{$group: {_id: "$str", accum: {$top: {sortBy: {str: 1, d: 1}, output: "$d"}}}}],
expectedOutput: [
{_id: null, accum: null},
{_id: "FoO", accum: 2},
{_id: "bAr", accum: 3},
{_id: "bar", accum: 4},
{_id: "foo", accum: 1}
],
validateExplain: assertPlanUsesCollScan,
});
assertPipelineResultsAndExplainAndQueryHash({
pipeline:
[{$group: {_id: "$str", accum: {$bottom: {sortBy: {str: 1, d: 1}, output: "$d"}}}}],
expectedOutput: [
{_id: null, accum: null},
{_id: "FoO", accum: 2},
{_id: "bAr", accum: 3},
{_id: "bar", accum: 4},
{_id: "foo", accum: 1}
],
validateExplain: assertPlanUsesCollScan,
});
//
// Verifies that a collated $group pipeline with a $top accumulator uses a collection scan.
//
assertPipelineResultsAndExplainAndQueryHash({
// Uses $toLower on the group-by string key to produce a stable results. This converts _id:
// null
// to _id: "".
pipeline: [
{$group: {_id: "$str", accum: {$top: {sortBy: {str: 1, d: 1}, output: "$d"}}}},
{$addFields: {_id: {$toLower: "$_id"}}}
],
expectedOutput: [{_id: "", accum: null}, {_id: "bar", accum: 3}, {_id: "foo", accum: 1}],
validateExplain: assertPlanUsesCollScan,
options: collationOption,
});
//
// Verifies that a collated $group pipeline with a $bottom accumulator uses a collection scan.
//
assertPipelineResultsAndExplainAndQueryHash({
// Uses $toLower on the group-by string key to produce a stable results. This converts _id:
// null
// to _id: "".
pipeline: [
{$group: {_id: "$str", accum: {$bottom: {sortBy: {str: 1, d: 1}, output: "$d"}}}},
{$addFields: {_id: {$toLower: "$_id"}}}
],
expectedOutput: [{_id: "", accum: null}, {_id: "bar", accum: 4}, {_id: "foo", accum: 2}],
validateExplain: assertPlanUsesCollScan,
options: collationOption,
});
////////////////////////////////////////////////////////////////////////////////////////////////
// Collation tests 2: index on string field with no collation.
////////////////////////////////////////////////////////////////////////////////////////////////
addIndex({str: 1, d: 1});
//
// Verifies that a $group pipeline uses a DISTINCT_SCAN.
//
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{$group: {_id: "$str", accum: {$top: {sortBy: {str: 1, d: 1}, output: "$d"}}}}],
expectedOutput: [
{_id: null, accum: null},
{_id: "FoO", accum: 2},
{_id: "bAr", accum: 3},
{_id: "bar", accum: 4},
{_id: "foo", accum: 1}
],
validateExplain: (explain) => assertPlanUsesDistinctScan(database, explain, {str: 1, d: 1}),
});
assertPipelineResultsAndExplainAndQueryHash({
pipeline:
[{$group: {_id: "$str", accum: {$bottom: {sortBy: {str: 1, d: 1}, output: "$d"}}}}],
expectedOutput: [
{_id: null, accum: null},
{_id: "FoO", accum: 2},
{_id: "bAr", accum: 3},
{_id: "bar", accum: 4},
{_id: "foo", accum: 1}
],
validateExplain: (explain) => assertPlanUsesDistinctScan(database, explain, {str: 1, d: 1}),
});
//
// Verifies that a $group that use a collation and includes a $top accumulators _does not_ scan
// the index, which is not aware of the collation.
//
assertPipelineResultsAndExplainAndQueryHash({
// Uses $toLower on the group-by string key to produce a stable results. This converts _id:
// null
// to _id: "".
pipeline: [
{$group: {_id: "$str", accum: {$top: {sortBy: {str: 1, d: 1}, output: "$d"}}}},
{$addFields: {_id: {$toLower: "$_id"}}}
],
expectedOutput: [{_id: "", accum: null}, {_id: "bar", accum: 3}, {_id: "foo", accum: 1}],
validateExplain: assertPlanUsesCollScan,
options: collationOption
});
//
// Verifies that a $group that use a collation and includes a $last accumulators _does not_ scan
// the index, which is not aware of the collation.
//
assertPipelineResultsAndExplainAndQueryHash({
// Uses $toLower on the group-by string key to produce a stable results. This converts _id:
// null
// to _id: "".
pipeline: [
{$group: {_id: "$str", accum: {$top: {sortBy: {str: 1, d: -1}, output: "$d"}}}},
{$addFields: {_id: {$toLower: "$_id"}}}
],
expectedOutput: [{_id: "bar", accum: 4}, {_id: "foo", accum: 2}, {_id: "", accum: null}],
validateExplain: assertPlanUsesCollScan,
options: collationOption
});
////////////////////////////////////////////////////////////////////////////////////////////////
// Collation tests 3: index on string field with case-insensitive collation.
////////////////////////////////////////////////////////////////////////////////////////////////
removeIndex({str: 1, d: 1});
addIndex({str: 1, d: 1}, collationOption);
//
// Verifies that a $group pipeline with no collation _does not_ scan the index, which does have
// a collation.
//
assertPipelineResultsAndExplainAndQueryHash({
pipeline: [{$group: {_id: "$str", accum: {$top: {sortBy: {str: 1, d: 1}, output: "$d"}}}}],
expectedOutput: [
{_id: null, accum: null},
{_id: "FoO", accum: 2},
{_id: "bAr", accum: 3},
{_id: "bar", accum: 4},
{_id: "foo", accum: 1}
],
validateExplain: assertPlanUsesCollScan
});
assertPipelineResultsAndExplainAndQueryHash({
pipeline:
[{$group: {_id: "$str", accum: {$bottom: {sortBy: {str: 1, d: 1}, output: "$d"}}}}],
expectedOutput: [
{_id: null, accum: null},
{_id: "FoO", accum: 2},
{_id: "bAr", accum: 3},
{_id: "bar", accum: 4},
{_id: "foo", accum: 1}
],
validateExplain: assertPlanUsesCollScan
});
//
// Verifies that a $group pipeline that uses a collation and includes a $top accumulator uses a
// DISTINCT_SCAN, which uses a matching collation.
//
assertPipelineResultsAndExplainAndQueryHash({
// Uses $toLower on the group-by string key to produce a stable results. This converts _id:
// null
// to _id: "".
pipeline: [
{$group: {_id: "$str", accum: {$top: {sortBy: {str: 1, d: 1}, output: "$d"}}}},
{$addFields: {_id: {$toLower: "$_id"}}}
],
expectedOutput: [{_id: "", accum: null}, {_id: "bar", accum: 3}, {_id: "foo", accum: 1}],
validateExplain: (explain) => assertPlanUsesDistinctScan(database, explain, {str: 1, d: 1}),
options: collationOption
});
//
// Verifies that a $group pipeline that uses a collation and includes a $bottom accumulator uses
// a DISTINCT_SCAN, which uses a matching collation.
//
assertPipelineResultsAndExplainAndQueryHash({
// Uses $toLower on the group-by string key to produce a stable results. This converts _id:
// null
// to _id: "".
pipeline: [
{$group: {_id: "$str", accum: {$bottom: {sortBy: {str: 1, d: 1}, output: "$d"}}}},
{$addFields: {_id: {$toLower: "$_id"}}}
],
expectedOutput: [{_id: "foo", accum: 2}, {_id: "", accum: null}, {_id: "bar", accum: 4}],
validateExplain: (explain) => assertPlanUsesDistinctScan(database, explain, {str: 1, d: 1}),
options: collationOption
});
// These tests do not verify data but verify that the server does not die.
assert.eq(
database.nodata.aggregate([{$group: {_id: '$a', o: {$top: {output: 'a', sortBy: {}}}}}])
.toArray()
.length,
0);
assert.eq(database.nodata
.aggregate([{$group: {_id: '$a', o: {$topN: {n: 1, output: 'a', sortBy: {}}}}}])
.toArray()
.length,
0);
assert.eq(
database.nodata.aggregate([{$group: {_id: '$a', o: {$bottom: {output: 'a', sortBy: {}}}}}])
.toArray()
.length,
0);
assert.eq(
database.nodata
.aggregate([{$group: {_id: '$a', o: {$bottomN: {n: 1, output: 'a', sortBy: {}}}}}])
.toArray()
.length,
0);
}