summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline/expression.h
diff options
context:
space:
mode:
authorKatherine Walker <katherine.walker@mongodb.com>2017-10-04 14:24:18 -0400
committerKatherine Walker <katherine.walker@mongodb.com>2017-10-05 14:09:13 -0400
commitb79c89cb665c85242607d66521fe1a2b91771188 (patch)
tree38c3747be8fc6f17037d0cff02079d919936ee46 /src/mongo/db/pipeline/expression.h
parent9e72a50f1ede62ab9f5899cf8f10dd93ca0c45d1 (diff)
downloadmongo-b79c89cb665c85242607d66521fe1a2b91771188.tar.gz
SERVER-31322 Rename year and week field names for $dateToParts and $dateFromParts
Diffstat (limited to 'src/mongo/db/pipeline/expression.h')
-rw-r--r--src/mongo/db/pipeline/expression.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/pipeline/expression.h b/src/mongo/db/pipeline/expression.h
index ed95bcdc2f1..10547772cf8 100644
--- a/src/mongo/db/pipeline/expression.h
+++ b/src/mongo/db/pipeline/expression.h
@@ -900,8 +900,8 @@ private:
boost::intrusive_ptr<Expression> minute,
boost::intrusive_ptr<Expression> second,
boost::intrusive_ptr<Expression> millisecond,
- boost::intrusive_ptr<Expression> isoYear,
boost::intrusive_ptr<Expression> isoWeekYear,
+ boost::intrusive_ptr<Expression> isoWeek,
boost::intrusive_ptr<Expression> isoDayOfWeek,
boost::intrusive_ptr<Expression> timeZone);
@@ -924,8 +924,8 @@ private:
boost::intrusive_ptr<Expression> _minute;
boost::intrusive_ptr<Expression> _second;
boost::intrusive_ptr<Expression> _millisecond;
- boost::intrusive_ptr<Expression> _isoYear;
boost::intrusive_ptr<Expression> _isoWeekYear;
+ boost::intrusive_ptr<Expression> _isoWeek;
boost::intrusive_ptr<Expression> _isoDayOfWeek;
boost::intrusive_ptr<Expression> _timeZone;
};