summaryrefslogtreecommitdiff
path: root/src/mongo/db/matcher/expression.cpp
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2013-05-21 22:56:51 -0400
committerEliot Horowitz <eliot@10gen.com>2013-05-22 16:51:00 -0400
commitcf9c3ea82f89136d98fe58fc9a68d0f62f501e20 (patch)
tree66cee8e5f8fda9381e65a9663cb87ec139d5406b /src/mongo/db/matcher/expression.cpp
parentcd3548f66b33f019e5c42dbf02d96d4ccf839789 (diff)
downloadmongo-cf9c3ea82f89136d98fe58fc9a68d0f62f501e20.tar.gz
SERVER-9749: all is just semantic sugar for and
Diffstat (limited to 'src/mongo/db/matcher/expression.cpp')
-rw-r--r--src/mongo/db/matcher/expression.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mongo/db/matcher/expression.cpp b/src/mongo/db/matcher/expression.cpp
index a249fe7e1dd..bf09e277c80 100644
--- a/src/mongo/db/matcher/expression.cpp
+++ b/src/mongo/db/matcher/expression.cpp
@@ -52,6 +52,11 @@ namespace mongo {
debug << "$atomic\n";
}
+ void FalseMatchExpression::debugString( StringBuilder& debug, int level ) const {
+ _debugAddSpace( debug, level );
+ debug << "$false\n";
+ }
+
}