Skip to content

Commit e9fc610

Browse files
committed
Merge 10.5 into 10.6
2 parents 46234f0 + 927a882 commit e9fc610

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

mysql-test/suite/innodb/r/instant_alter_debug.result

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -381,11 +381,6 @@ a b
381381
1 1
382382
DROP TABLE t1;
383383
SET debug_dbug = @save_dbug;
384-
SELECT variable_value-@old_instant instants
385-
FROM information_schema.global_status
386-
WHERE variable_name = 'innodb_instant_alter_column';
387-
instants
388-
28
389384
#
390385
# MDEV-24512 Assertion failed in rec_is_metadata()
391386
# in btr_discard_only_page_on_level()
@@ -441,3 +436,8 @@ DROP TABLE t1;
441436
SET DEBUG_SYNC=RESET;
442437
# End of 10.5 tests
443438
SET GLOBAL innodb_purge_rseg_truncate_frequency = @save_frequency;
439+
SELECT variable_value-@old_instant instants
440+
FROM information_schema.global_status
441+
WHERE variable_name = 'innodb_instant_alter_column';
442+
instants
443+
32

mysql-test/suite/innodb/t/instant_alter_debug.test

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,7 @@ connection default;
233233
SET DEBUG_SYNC = 'now WAIT_FOR copied';
234234
let $wait_all_purged = 1;
235235
--source include/wait_all_purged.inc
236+
let $wait_all_purged = 0;
236237
INSERT INTO t1 SET a=1;
237238
INSERT INTO t1 SET a=2,b=3,c=4;
238239
SET DEBUG_SYNC = 'now SIGNAL logged';
@@ -260,6 +261,7 @@ connection default;
260261
SET DEBUG_SYNC = 'now WAIT_FOR copied';
261262
let $wait_all_purged = 1;
262263
--source include/wait_all_purged.inc
264+
let $wait_all_purged = 0;
263265
INSERT INTO t1 SET a=1;
264266
INSERT INTO t1 SET a=2,c=4;
265267
SET DEBUG_SYNC = 'now SIGNAL logged';
@@ -430,10 +432,6 @@ DROP TABLE t1;
430432

431433
SET debug_dbug = @save_dbug;
432434

433-
SELECT variable_value-@old_instant instants
434-
FROM information_schema.global_status
435-
WHERE variable_name = 'innodb_instant_alter_column';
436-
437435
--echo #
438436
--echo # MDEV-24512 Assertion failed in rec_is_metadata()
439437
--echo # in btr_discard_only_page_on_level()
@@ -501,3 +499,7 @@ SET DEBUG_SYNC=RESET;
501499
--echo # End of 10.5 tests
502500

503501
SET GLOBAL innodb_purge_rseg_truncate_frequency = @save_frequency;
502+
503+
SELECT variable_value-@old_instant instants
504+
FROM information_schema.global_status
505+
WHERE variable_name = 'innodb_instant_alter_column';

0 commit comments

Comments
 (0)