34 lines
1.3 KiB
Plaintext
34 lines
1.3 KiB
Plaintext
include/master-slave.inc
|
|
Warnings:
|
|
Note #### Sending passwords in plain text without SSL/TLS is extremely insecure.
|
|
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.
|
|
[connection master]
|
|
#
|
|
# BUG#17994219: CREATE TABLE .. SELECT PRODUCES INVALID STRUCTURE,
|
|
# BREAKS RBR
|
|
#
|
|
SET sql_mode = 'NO_ENGINE_SUBSTITUTION';
|
|
#After the patch, the display width is set to a default
|
|
#value of 21.
|
|
CREATE TABLE t1 AS SELECT REPEAT('A', 1000) DIV 1 AS a;
|
|
Warnings:
|
|
Warning 1366 Incorrect DECIMAL value: '0' for column '' at row -1
|
|
SHOW CREATE TABLE t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` bigint(21) DEFAULT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
|
|
CREATE TABLE t2 AS SELECT CONVERT(REPEAT('A', 255) USING UCS2) DIV 1 AS a;
|
|
Warnings:
|
|
Warning 1366 Incorrect DECIMAL value: '0' for column '' at row -1
|
|
SHOW CREATE TABLE t2;
|
|
Table Create Table
|
|
t2 CREATE TABLE `t2` (
|
|
`a` bigint(21) DEFAULT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
|
|
#After the patch, no error is reported.
|
|
DROP TABLE t1;
|
|
DROP TABLE t2;
|
|
SET sql_mode = default;
|
|
include/rpl_end.inc
|