We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eff649e commit 6c516e7Copy full SHA for 6c516e7
storage/innobase/handler/ha_innodb.cc
@@ -4710,6 +4710,14 @@ innobase_commit_ordered_2(
4710
/* Don't do write + flush right now. For group commit
4711
to work we want to do the flush later. */
4712
trx->flush_log_later = true;
4713
+
4714
+ /* Notify VTQ on System Versioned tables update */
4715
+ if (trx->vtq_notify_on_commit) {
4716
+ vers_notify_vtq(trx);
4717
+ trx->vtq_notify_on_commit = false;
4718
+ }
4719
+ } else {
4720
+ DBUG_ASSERT(!trx->vtq_notify_on_commit);
4721
}
4722
4723
innobase_commit_low(trx);
0 commit comments