Skip to content

Commit bd223e1

Browse files
committed
SERVER-13852 initialize IndexBounds::endKeyInclusive in constructor
1 parent 193aba8 commit bd223e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mongo/db/query/index_bounds.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ namespace mongo {
7171
* interpret. Previously known as FieldRangeVector.
7272
*/
7373
struct IndexBounds {
74-
IndexBounds() : isSimpleRange(false) { }
74+
IndexBounds() : isSimpleRange(false), endKeyInclusive(false) { }
7575

7676
// For each indexed field, the values that the field is allowed to take on.
7777
vector<OrderedIntervalList> fields;

0 commit comments

Comments
 (0)