From 3e27134024d243b03e0d52c2e8e966f5aeb7f84f Mon Sep 17 00:00:00 2001 From: Benety Goh Date: Tue, 28 Jun 2022 07:28:20 -0400 Subject: SERVER-67281 add OpObserver::onBatchedWriteStart() and onBatchedWriteAbort() --- src/mongo/db/free_mon/free_mon_op_observer.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/mongo/db/free_mon') diff --git a/src/mongo/db/free_mon/free_mon_op_observer.h b/src/mongo/db/free_mon/free_mon_op_observer.h index 498d728d187..2a2a0c60097 100644 --- a/src/mongo/db/free_mon/free_mon_op_observer.h +++ b/src/mongo/db/free_mon/free_mon_op_observer.h @@ -209,8 +209,12 @@ public: void onTransactionAbort(OperationContext* opCtx, boost::optional abortOplogEntryOpTime) final {} + void onBatchedWriteStart(OperationContext* opCtx) final {} + void onBatchedWriteCommit(OperationContext* opCtx) final {} + void onBatchedWriteAbort(OperationContext* opCtx) final {} + void onMajorityCommitPointUpdate(ServiceContext* service, const repl::OpTime& newCommitPoint) final {} -- cgit v1.2.1