~ubuntu-branches/ubuntu/trusty/mysql-5.6/trusty

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/r/rpl_row_utf32.result

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-12 11:54:27 UTC
  • Revision ID: package-import@ubuntu.com-20140212115427-oq6tfsqxl1wuwehi
Tags: upstream-5.6.15
ImportĀ upstreamĀ versionĀ 5.6.15

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 SQL_LOG_BIN=0;
 
7
CREATE TABLE t1 (c1 char(255) DEFAULT NULL, KEY c1 (c1)) DEFAULT CHARSET=utf32;
 
8
Warnings:
 
9
Warning 1071    Specified key was too long; max key length is 1000 bytes
 
10
SET SQL_LOG_BIN=1;
 
11
SET @saved_slave_type_conversions= @@global.slave_type_conversions;
 
12
include/stop_slave.inc
 
13
SET GLOBAL SLAVE_TYPE_CONVERSIONS='ALL_NON_LOSSY';
 
14
include/start_slave.inc
 
15
SET SQL_LOG_BIN=0;
 
16
CREATE TABLE t1 ( c1 varchar(255) DEFAULT NULL, KEY c1 (c1)) DEFAULT CHARSET=utf32;
 
17
Warnings:
 
18
Warning 1071    Specified key was too long; max key length is 1000 bytes
 
19
SET SQL_LOG_BIN=1;
 
20
INSERT INTO t1(c1) VALUES ('insert into t1');
 
21
DROP TABLE t1;
 
22
SET GLOBAL SLAVE_TYPE_CONVERSIONS= @saved_slave_type_conversions;
 
23
include/stop_slave.inc
 
24
include/start_slave.inc
 
25
include/rpl_end.inc