-
Type: Bug
-
Resolution: Fixed
-
Priority: Major - P3
-
Affects Version/s: 5.0.7, 6.0.0-rc6, 6.1.0-rc0
-
Component/s: None
-
None
-
Fully Compatible
-
ALL
-
v6.0, v5.0, v4.4, v4.2
-
QO 2022-06-13, QE 2022-06-27
If there’s not a projection at the front of a pipeline during planning, we'll try to create one to push down by doing dependency analysis on the pipeline, then constructing a projection from the results. The logic for converting the dependency analysis results to a projection spec relies on set iterators going in lexicographic order so that a string is always directly before all of the fields it prefixes.
That is true in some cases. If the pipeline has dependencies on “a.b” and “a.b.c”, then we process the strings in that order and we create a projection indicating that “a.b” should be included.
However, if the pipeline has dependencies on “a.b”, “a.b.c”, and “a.b-d”, then the order we process the fields in is “a.b”, “a.b-d”, “a.b.c”. As a result, we try to create a projection indicating that all three fields should be included. This fails with a path collision error.
- is depended on by
-
SERVER-67264 Avoid COLUMN_SCAN if dependencies prefix each other as in "a" and "a.b"
- Closed
- related to
-
SERVER-67416 Always sort fieldpath string sets using custom comparator
- Closed