Skip to content

Commit f5ba284

Browse files
kevgsmidenok
authored andcommitted
Tests: innodb.row_format_redundant
1 parent 3f79010 commit f5ba284

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ DROP TABLE t1;
7272
Warnings:
7373
Warning 1932 Table 'test.t1' doesn't exist in engine
7474
DROP TABLE t2,t3;
75-
FOUND 49 /\[ERROR\] InnoDB: Table `test`\.`t1` in InnoDB data dictionary contains invalid flags\. SYS_TABLES\.TYPE=1 SYS_TABLES\.MIX_LEN=255\b/ in mysqld.1.err
75+
FOUND 49 /\[ERROR\] InnoDB: Table `test`\.`t1` in InnoDB data dictionary contains invalid flags\. SYS_TABLES\.TYPE=1 SYS_TABLES\.MIX_LEN=511\b/ in mysqld.1.err
7676
ib_buffer_pool
7777
ib_logfile0
7878
ib_logfile1

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
--disable_query_log
66
call mtr.add_suppression("InnoDB: Table `mysql`\\.`innodb_table_stats` not found");
7-
call mtr.add_suppression("InnoDB: Table `test`.`t1` in InnoDB data dictionary contains invalid flags. SYS_TABLES\\.TYPE=1 SYS_TABLES\\.MIX_LEN=255\\r?$");
7+
call mtr.add_suppression("InnoDB: Table `test`.`t1` in InnoDB data dictionary contains invalid flags. SYS_TABLES\\.TYPE=1 SYS_TABLES\\.MIX_LEN=511\\r?$");
88
call mtr.add_suppression("InnoDB: Parent table of FTS auxiliary table test/FTS_.* not found");
99
call mtr.add_suppression("InnoDB: Cannot open table test/t1 from the internal data dictionary");
1010
call mtr.add_suppression("InnoDB: Table `test`.`t1` does not exist in the InnoDB internal data dictionary though MariaDB is trying to (rename|drop)");
@@ -115,7 +115,7 @@ for (my $offset= 0x65; $offset;
115115
if ($i == 7 && $name =~ '^test/t[123]')
116116
{
117117
print "corrupted SYS_TABLES.MIX_LEN for $name\n";
118-
substr($page,$offset+$start,$end-$start)= pack("N", 255);
118+
substr($page,$offset+$start,$end-$start)= pack("N", 511);
119119
}
120120
$start= $end & 0x7f;
121121
}
@@ -141,7 +141,7 @@ RENAME TABLE t1 TO tee_one;
141141
DROP TABLE t1;
142142
DROP TABLE t2,t3;
143143

144-
--let SEARCH_PATTERN= \[ERROR\] InnoDB: Table `test`\.`t1` in InnoDB data dictionary contains invalid flags\. SYS_TABLES\.TYPE=1 SYS_TABLES\.MIX_LEN=255\b
144+
--let SEARCH_PATTERN= \[ERROR\] InnoDB: Table `test`\.`t1` in InnoDB data dictionary contains invalid flags\. SYS_TABLES\.TYPE=1 SYS_TABLES\.MIX_LEN=511\b
145145
--source include/search_pattern_in_file.inc
146146

147147
--let $restart_parameters=

0 commit comments

Comments
 (0)