summaryrefslogtreecommitdiff
path: root/src/mongo/db/sessions_collection_rs.h
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2019-04-18 18:11:49 -0400
committerKaloian Manassiev <kaloian.manassiev@mongodb.com>2019-05-02 17:32:13 -0400
commitdabbf059e6f96edb4898b42d532d460efd2510f2 (patch)
tree29de3211bc68c18526e200f63ba0fb5fc0cb42c4 /src/mongo/db/sessions_collection_rs.h
parent7b427c88142e9313242dd76e7ecf1dbf0375b40e (diff)
downloadmongo-dabbf059e6f96edb4898b42d532d460efd2510f2.tar.gz
SERVER-37837 Move `config.transactions` manipulation out of SessionsCollection
Diffstat (limited to 'src/mongo/db/sessions_collection_rs.h')
-rw-r--r--src/mongo/db/sessions_collection_rs.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/mongo/db/sessions_collection_rs.h b/src/mongo/db/sessions_collection_rs.h
index 311bf25c663..fbd8a4f74a2 100644
--- a/src/mongo/db/sessions_collection_rs.h
+++ b/src/mongo/db/sessions_collection_rs.h
@@ -89,24 +89,6 @@ public:
*/
StatusWith<LogicalSessionIdSet> findRemovedSessions(
OperationContext* opCtx, const LogicalSessionIdSet& sessions) override;
-
- /**
- * Removes the transaction records for the specified sessions from the
- * transaction table.
- *
- * If a step-down happens on this node as this method is running, it may fail.
- */
- Status removeTransactionRecords(OperationContext* opCtx,
- const LogicalSessionIdSet& sessions) override;
-
- /**
- * Helper for a shard server to run its transaction operations as a replica set
- * member.
- *
- * If a step-down happens on this node as this method is running, it may fail.
- */
- static Status removeTransactionRecordsHelper(OperationContext* opCtx,
- const LogicalSessionIdSet& sessions);
};
} // namespace mongo