mirror of https://github.com/mongodb/mongo
SERVER-114656 Properly initialize scalar values for QuerySolutionNodeWithSortSet (#45244)
Co-authored-by: Samuel Mercier <samontea@users.noreply.github.com> GitOrigin-RevId: a078fb5ed64b376da05d5ab92b022609bb97257f
This commit is contained in:
parent
a4a1ea4953
commit
f6c6558b7b
|
|
@ -1576,10 +1576,10 @@ struct CountScanNode : public QuerySolutionNodeWithSortSet {
|
||||||
IndexEntry index;
|
IndexEntry index;
|
||||||
|
|
||||||
BSONObj startKey;
|
BSONObj startKey;
|
||||||
bool startKeyInclusive;
|
bool startKeyInclusive = false;
|
||||||
|
|
||||||
BSONObj endKey;
|
BSONObj endKey;
|
||||||
bool endKeyInclusive;
|
bool endKeyInclusive = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A vector of Interval Evaluation Trees (IETs) with the same ordering as the index key pattern.
|
* A vector of Interval Evaluation Trees (IETs) with the same ordering as the index key pattern.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue