summaryrefslogtreecommitdiff
path: root/src/mongo/db/matcher/expression_where.cpp
diff options
context:
space:
mode:
authorAndy Schwerin <schwerin@mongodb.com>2015-06-19 08:59:54 -0400
committerAndy Schwerin <schwerin@mongodb.com>2015-06-19 08:59:54 -0400
commit0825bb2c83936d76d927bef681805b6fc686105d (patch)
tree99bb0c2da3e1d2b59c282201cc8ee96f93c6f11b /src/mongo/db/matcher/expression_where.cpp
parentc635e73f4ff38e954cc7cf02c77afbd65d576e54 (diff)
downloadmongo-0825bb2c83936d76d927bef681805b6fc686105d.tar.gz
SERVER-19040 Fix uassert code
Diffstat (limited to 'src/mongo/db/matcher/expression_where.cpp')
-rw-r--r--src/mongo/db/matcher/expression_where.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/matcher/expression_where.cpp b/src/mongo/db/matcher/expression_where.cpp
index adbfe6172d2..804ae7dc687 100644
--- a/src/mongo/db/matcher/expression_where.cpp
+++ b/src/mongo/db/matcher/expression_where.cpp
@@ -131,7 +131,7 @@ namespace mongo {
}
bool WhereMatchExpression::matches( const MatchableDocument* doc, MatchDetails* details ) const {
- uassert(28689, "$where compile error", _func);
+ uassert(28692, "$where compile error", _func);
BSONObj obj = doc->toBSON();
if ( ! _userScope.isEmpty() ) {