summaryrefslogtreecommitdiff
path: root/src/mongo/db/ops/update.cpp
diff options
context:
space:
mode:
authorTess Avitabile <tess.avitabile@mongodb.com>2017-04-14 16:06:18 -0400
committerTess Avitabile <tess.avitabile@mongodb.com>2017-04-20 13:22:12 -0400
commit0293c14cbdc5646d9f09f4fe5b2a27e6d540dce0 (patch)
tree427f823c34f54fcd8d7fa28969ce7f40c740a354 /src/mongo/db/ops/update.cpp
parentc08590a6ac9dc54c9d910822d47ea17140b56f89 (diff)
downloadmongo-0293c14cbdc5646d9f09f4fe5b2a27e6d540dce0.tar.gz
SERVER-28621 Parse BSON update expression into an UpdateNode tree
Diffstat (limited to 'src/mongo/db/ops/update.cpp')
-rw-r--r--src/mongo/db/ops/update.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/ops/update.cpp b/src/mongo/db/ops/update.cpp
index eaeb014009b..0e5a11e2a0f 100644
--- a/src/mongo/db/ops/update.cpp
+++ b/src/mongo/db/ops/update.cpp
@@ -44,13 +44,13 @@
#include "mongo/db/concurrency/write_conflict_exception.h"
#include "mongo/db/exec/update.h"
#include "mongo/db/op_observer.h"
-#include "mongo/db/ops/update_driver.h"
#include "mongo/db/ops/update_lifecycle.h"
#include "mongo/db/query/explain.h"
#include "mongo/db/query/get_executor.h"
#include "mongo/db/query/plan_summary_stats.h"
#include "mongo/db/repl/repl_client_info.h"
#include "mongo/db/repl/replication_coordinator_global.h"
+#include "mongo/db/update/update_driver.h"
#include "mongo/db/update_index_data.h"
#include "mongo/util/log.h"
#include "mongo/util/scopeguard.h"