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:
Peter Volk 2025-12-15 12:57:00 +01:00 committed by MongoDB Bot
parent a4a1ea4953
commit f6c6558b7b
1 changed files with 2 additions and 2 deletions

View File

@ -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.