mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 20:07:13 +02:00
Merge 10.1 into 10.2
This commit is contained in:
commit
9ede569260
6 changed files with 33 additions and 46 deletions
|
|
@ -16,7 +16,7 @@ binmode FILE;
|
|||
my $ps= $ENV{INNODB_PAGE_SIZE};
|
||||
my $page;
|
||||
die "Unable to read $file" unless sysread(FILE, $page, $ps) == $ps;
|
||||
substr($page,26,8) = pack("NN", 4096, 0);
|
||||
substr($page,26,8) = pack("NN", 4096, ~1024);
|
||||
substr($page,0,4)=pack("N",0xdeadbeef);
|
||||
substr($page,$ps-8,4)=pack("N",0xdeadbeef);
|
||||
sysseek(FILE, 0, 0) || die "Unable to rewind $file\n";
|
||||
|
|
@ -28,7 +28,7 @@ EOF
|
|||
|
||||
--source include/start_mysqld.inc
|
||||
let SEARCH_FILE= $MYSQLTEST_VARDIR/log/mysqld.1.err;
|
||||
--let SEARCH_PATTERN= InnoDB: 5\.7\.\d+ started; log sequence number 17592186044428
|
||||
--let SEARCH_PATTERN= InnoDB: .*started; log sequence number 17596481010700
|
||||
--source include/search_pattern_in_file.inc
|
||||
|
||||
CREATE TABLE t(i INT) ENGINE INNODB;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue