Skip to content

Commit

Permalink
MDEV-20528 innodb.purge_secondary_mdev-16222 failed in buildbot, debu…
Browse files Browse the repository at this point in the history
…g sync point wait timed out
  • Loading branch information
midenok committed Feb 2, 2020
1 parent 006f6f9 commit e13e49e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion mysql-test/suite/gcol/r/innodb_virtual_debug_purge.result
Expand Up @@ -208,7 +208,8 @@ DROP TABLE t1, t2;
# MDEV-16222 Assertion `0' failed in row_purge_remove_sec_if_poss_leaf
# on table with virtual columns and indexes
#
SET @saved_dbug= @@GLOBAL.debug_dbug;
InnoDB 0 transactions not purged
set @saved_dbug= @@global.debug_dbug;
set global debug_dbug= "+d,ib_purge_virtual_mdev_16222_1,ib_purge_virtual_mdev_16222_2";
create table t1 (
pk serial, vb tinyblob as (b) virtual, b tinyblob,
Expand Down
5 changes: 3 additions & 2 deletions mysql-test/suite/gcol/t/innodb_virtual_debug_purge.test
Expand Up @@ -264,8 +264,9 @@ DROP TABLE t1, t2;
--echo # on table with virtual columns and indexes
--echo #

--source suite/innodb/include/wait_all_purged.inc
--let $datadir= `select @@datadir`
SET @saved_dbug= @@GLOBAL.debug_dbug;
set @saved_dbug= @@global.debug_dbug;
set global debug_dbug= "+d,ib_purge_virtual_mdev_16222_1,ib_purge_virtual_mdev_16222_2";

create table t1 (
Expand Down Expand Up @@ -373,4 +374,4 @@ SELECT * FROM t1;
# Cleanup
DROP TABLE t1;
SET debug_sync= reset;
set global debug_dbug= @saved_dbug;
set global debug_dbug= @saved_dbug;

0 comments on commit e13e49e

Please sign in to comment.