Commit 4e9366df authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-26672 test fixup

Occasionally, after restart, additional transactions will have been
executed, possibly related to innodb_stats_auto_recalc.

We should only care that the transaction ID sequence does
not go backwards.
parent a1352870
......@@ -53,7 +53,7 @@ let $trx_after= `select substr('$trx_after',9)`;
drop table t1, t2;
if ($trx_before != $trx_after)
if ($trx_before > $trx_after)
{
echo Transaction sequence mismatch: $trx_before != $trx_after;
echo Transaction sequence mismatch: $trx_before > $trx_after;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment