~ubuntu-branches/ubuntu/wily/mysql-5.6/wily

« back to all changes in this revision

Viewing changes to mysql-test/suite/innodb_stress/r/innodb_hugestress_crash_blob_nocompress.result

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2015-07-21 07:09:29 UTC
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: package-import@ubuntu.com-20150721070929-mg4dpqkgg3it1ajf
Tags: upstream-5.6.25
ImportĀ upstreamĀ versionĀ 5.6.25

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include/master-slave.inc
 
2
Warnings:
 
3
Note    ####    Sending passwords in plain text without SSL/TLS is extremely insecure.
 
4
Note    ####    Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information.
 
5
[connection master]
 
6
SET GLOBAL innodb_file_format=Barracuda;
 
7
DROP TABLE IF EXISTS t1;
 
8
CREATE TABLE t1(id INT AUTO_INCREMENT PRIMARY KEY,
 
9
msg_prefix VARCHAR(255),
 
10
msg longtext,
 
11
msg_length int,
 
12
msg_checksum varchar(128),
 
13
KEY msg_i(msg_prefix))
 
14
ENGINE=INNODB;
 
15
call mtr.add_suppression(".*");
 
16
Wait for reconnect
 
17
Checksum master
 
18
stop slave;
 
19
start slave;
 
20
Checksum slave
 
21
Wait for reconnect
 
22
Checksum master
 
23
stop slave;
 
24
start slave;
 
25
Checksum slave
 
26
DROP TABLE t1;
 
27
stop slave;
 
28
start slave;
 
29
include/stop_slave.inc
 
30
include/start_slave.inc
 
31
include/stop_slave.inc
 
32
SET GLOBAL innodb_file_format=Default;