Browse Source

Applying InnoDB snapshot

Detailed revision comments:

r6801 | marko | 2010-03-11 13:34:28 +0200 (Thu, 11 Mar 2010) | 2 lines
branches/zip: mtr_memo_contains(): Relax the assertion of r6800,
allowing mtr->state == MTR_COMMITTING.
pull/374/head
Sergey Vojtovich 16 years ago
parent
commit
624f088457
  1. 2
      storage/innodb_plugin/include/mtr0mtr.ic

2
storage/innodb_plugin/include/mtr0mtr.ic

@ -151,7 +151,7 @@ mtr_memo_contains(
ut_ad(mtr);
ut_ad(mtr->magic_n == MTR_MAGIC_N);
ut_ad(mtr->state == MTR_ACTIVE);
ut_ad(mtr->state == MTR_ACTIVE || mtr->state == MTR_COMMITTING);
memo = &(mtr->memo);

Loading…
Cancel
Save