summaryrefslogtreecommitdiff
path: root/src/mongo/db/ops/modifier_pull_all.h
diff options
context:
space:
mode:
authorScott Hernandez <scotthernandez@gmail.com>2013-08-01 16:00:24 -0400
committerScott Hernandez <scotthernandez@gmail.com>2013-08-01 16:17:26 -0400
commit869557aabbd8837ec86a852957f24ea76e8e13e4 (patch)
tree6a5c78b7278b5ab24fe8fd87d597228af62fb7c5 /src/mongo/db/ops/modifier_pull_all.h
parent5647c97e2b618144801c75651f59010088823810 (diff)
downloadmongo-869557aabbd8837ec86a852957f24ea76e8e13e4.tar.gz
SERVER-10163: don't enforce viable path restriction for replication related updates ($set)
Diffstat (limited to 'src/mongo/db/ops/modifier_pull_all.h')
-rw-r--r--src/mongo/db/ops/modifier_pull_all.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/ops/modifier_pull_all.h b/src/mongo/db/ops/modifier_pull_all.h
index 8a157bf8271..b9a34afc943 100644
--- a/src/mongo/db/ops/modifier_pull_all.h
+++ b/src/mongo/db/ops/modifier_pull_all.h
@@ -43,7 +43,7 @@ namespace mongo {
* Ex. {$pullAll : {<field> : [<values>]}}
* {$pullAll :{ array : [1,2] } } will transform {array: [1,2,3]} -> {array: [3]}
*/
- virtual Status init(const BSONElement& modExpr);
+ virtual Status init(const BSONElement& modExpr, const Options& opts);
virtual Status prepare(mutablebson::Element root,
const StringData& matchedField,