~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.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 VARCHAR(255),
 
11
msg_length int,
 
12
msg_checksum varchar(128),
 
13
KEY msg_i(msg_prefix))
 
14
ENGINE=INNODB
 
15
ROW_FORMAT=COMPRESSED
 
16
KEY_BLOCK_SIZE=1;
 
17
call mtr.add_suppression(".*");
 
18
Checksum master
 
19
stop slave;
 
20
start slave;
 
21
Checksum slave
 
22
DROP TABLE t1;
 
23
stop slave;
 
24
start slave;
 
25
include/stop_slave.inc
 
26
include/start_slave.inc
 
27
include/stop_slave.inc
 
28
SET GLOBAL innodb_file_format=Default;