summaryrefslogtreecommitdiff
path: root/src/mongo/db/ops
diff options
context:
space:
mode:
authorShin Yee Tan <shinyee.tan@mongodb.com>2022-08-17 16:56:46 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-08-17 18:00:05 +0000
commit27d4e9bb36bc09d27c17edb4ecd38ea120fd6b28 (patch)
treeec83e5086b782a583cd94b7e938196f3be25314f /src/mongo/db/ops
parent96debbaa3974a4c2cea4d79ddc4bd2765ad70351 (diff)
downloadmongo-27d4e9bb36bc09d27c17edb4ecd38ea120fd6b28.tar.gz
SERVER-68214 move session_catalog*, session*, logical_session* to mongo/db/session directory
Diffstat (limited to 'src/mongo/db/ops')
-rw-r--r--src/mongo/db/ops/SConscript2
-rw-r--r--src/mongo/db/ops/delete_request.idl4
-rw-r--r--src/mongo/db/ops/update_request.h2
-rw-r--r--src/mongo/db/ops/write_ops.idl2
4 files changed, 5 insertions, 5 deletions
diff --git a/src/mongo/db/ops/SConscript b/src/mongo/db/ops/SConscript
index 47f551b863b..87bf184ef13 100644
--- a/src/mongo/db/ops/SConscript
+++ b/src/mongo/db/ops/SConscript
@@ -121,7 +121,7 @@ env.CppUnitTest(
'$BUILD_DIR/mongo/db/query_exec',
'$BUILD_DIR/mongo/db/repl/mock_repl_coord_server_fixture',
'$BUILD_DIR/mongo/db/repl/oplog_entry',
- '$BUILD_DIR/mongo/db/session_catalog',
+ '$BUILD_DIR/mongo/db/session/session_catalog',
'$BUILD_DIR/mongo/db/transaction/transaction',
'write_ops',
'write_ops_exec',
diff --git a/src/mongo/db/ops/delete_request.idl b/src/mongo/db/ops/delete_request.idl
index 7571bfb329d..498d52943ab 100644
--- a/src/mongo/db/ops/delete_request.idl
+++ b/src/mongo/db/ops/delete_request.idl
@@ -29,11 +29,11 @@
global:
cpp_namespace: "mongo"
cpp_includes:
- - "mongo/db/logical_session_id.h"
+ - "mongo/db/session/logical_session_id.h"
- "mongo/db/query/plan_executor.h"
imports:
- - "mongo/db/logical_session_id.idl"
+ - "mongo/db/session/logical_session_id.idl"
- "mongo/db/pipeline/legacy_runtime_constants.idl"
- "mongo/idl/basic_types.idl"
- "mongo/db/query/hint.idl"
diff --git a/src/mongo/db/ops/update_request.h b/src/mongo/db/ops/update_request.h
index 9c49e90fad6..ed775c9e15e 100644
--- a/src/mongo/db/ops/update_request.h
+++ b/src/mongo/db/ops/update_request.h
@@ -31,11 +31,11 @@
#include "mongo/db/curop.h"
#include "mongo/db/jsobj.h"
-#include "mongo/db/logical_session_id.h"
#include "mongo/db/namespace_string.h"
#include "mongo/db/ops/write_ops.h"
#include "mongo/db/pipeline/legacy_runtime_constants_gen.h"
#include "mongo/db/query/explain.h"
+#include "mongo/db/session/logical_session_id.h"
#include "mongo/util/str.h"
namespace mongo {
diff --git a/src/mongo/db/ops/write_ops.idl b/src/mongo/db/ops/write_ops.idl
index 64af814e752..8c499edbf89 100644
--- a/src/mongo/db/ops/write_ops.idl
+++ b/src/mongo/db/ops/write_ops.idl
@@ -35,7 +35,7 @@ global:
imports:
- "mongo/crypto/fle_field_schema.idl"
- "mongo/db/auth/action_type.idl"
- - "mongo/db/logical_session_id.idl"
+ - "mongo/db/session/logical_session_id.idl"
- "mongo/db/pipeline/legacy_runtime_constants.idl"
- "mongo/db/query/hint.idl"
- "mongo/idl/basic_types.idl"