summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/getmore_cmd.cpp
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2023-01-12 14:58:50 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-01-12 16:02:09 +0000
commitdc3f7b70dc813440ca2bf3e260f30d0e4d445bef (patch)
tree0668c7cace02d85416bca3c423566bd012735a10 /src/mongo/db/commands/getmore_cmd.cpp
parentbcb06e83ad5a2f678c1b9d76bcaa96ce34e8b7bc (diff)
downloadmongo-dc3f7b70dc813440ca2bf3e260f30d0e4d445bef.tar.gz
SERVER-72736 Pull `Collection::makePlanExecutor` up into the query layer
Diffstat (limited to 'src/mongo/db/commands/getmore_cmd.cpp')
-rw-r--r--src/mongo/db/commands/getmore_cmd.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/db/commands/getmore_cmd.cpp b/src/mongo/db/commands/getmore_cmd.cpp
index 06c57a7447c..d2897b714e3 100644
--- a/src/mongo/db/commands/getmore_cmd.cpp
+++ b/src/mongo/db/commands/getmore_cmd.cpp
@@ -28,7 +28,6 @@
*/
#include <fmt/format.h>
-#include <memory>
#include <string>
#include "mongo/bson/util/bson_extract.h"
@@ -37,10 +36,10 @@
#include "mongo/db/auth/authorization_checks.h"
#include "mongo/db/auth/authorization_session.h"
#include "mongo/db/catalog/collection.h"
+#include "mongo/db/catalog/external_data_source_scope_guard.h"
#include "mongo/db/client.h"
#include "mongo/db/clientcursor.h"
#include "mongo/db/commands.h"
-#include "mongo/db/commands/external_data_source_scope_guard.h"
#include "mongo/db/curop.h"
#include "mongo/db/curop_failpoint_helpers.h"
#include "mongo/db/cursor_manager.h"