summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/migration_chunk_cloner_source.h
diff options
context:
space:
mode:
authorBlake Oler <blake.oler@mongodb.com>2019-05-28 19:20:56 -0400
committerBlake Oler <blake.oler@mongodb.com>2019-06-12 12:53:04 -0400
commitdfa8658c18142c560447c7bf6f34a6f788593d28 (patch)
tree587b77eacb8769f92e6976f0d875c79dc3179607 /src/mongo/db/s/migration_chunk_cloner_source.h
parent4304ce376401b5213b63611d94f9fb1d938d9e39 (diff)
downloadmongo-dfa8658c18142c560447c7bf6f34a6f788593d28.tar.gz
SERVER-40791 Track multi-statement transaction operations for migrations at commit time
Diffstat (limited to 'src/mongo/db/s/migration_chunk_cloner_source.h')
-rw-r--r--src/mongo/db/s/migration_chunk_cloner_source.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/mongo/db/s/migration_chunk_cloner_source.h b/src/mongo/db/s/migration_chunk_cloner_source.h
index 52c8993163e..c871a3e08a8 100644
--- a/src/mongo/db/s/migration_chunk_cloner_source.h
+++ b/src/mongo/db/s/migration_chunk_cloner_source.h
@@ -156,17 +156,6 @@ public:
const repl::OpTime& opTime,
const repl::OpTime& preImageOpTime) = 0;
- /**
- * Notifies this cloner that a transaction involving the collection being cloned was prepared or
- * committed. It is up to the cloner's implementation to decide what to do with this information
- * and it is valid for the implementation to ignore it.
- *
- * NOTE: Must be called with at least IX lock held on the collection.
- */
- virtual void onTransactionPrepareOrUnpreparedCommit(OperationContext* opCtx,
- const repl::OpTime& opTime) = 0;
-
-
protected:
MigrationChunkClonerSource();
};