1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
|
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 connection metadata repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START REPLICA; see the 'START REPLICA Syntax' in the MySQL Manual for more information.
[connection master]
CALL mtr.add_suppression('Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT.');
CALL mtr.add_suppression('Cannot execute statement because it needs to be written to the binary log as multiple statements');
CALL mtr.add_suppression('DROP DATABASE failed; some tables may have been dropped but the database directory remains.');
CALL mtr.add_suppression("Error dropping database");
CALL mtr.add_suppression("Can't drop database '.*'; database doesn't exist");
CALL mtr.add_suppression("Replica SQL for channel '': ... The replica coordinator and worker threads are stopped, possibly leaving data in inconsistent state. .* Error_code: MY-001756");
CALL mtr.add_suppression("Replica SQL for channel '': .* Error_code: MY-001105");
==== Case 2: DROP TABLES ====
==== Case 2D: Failing DROP TABLES for base tables with and without atomic DDL support ====
CREATE TABLE base_1_n (a INT) ENGINE = MyISAM;
CREATE TABLE base_2_n (a INT) ENGINE = MyISAM;
CREATE TABLE base_3_a (a INT) ENGINE = InnoDB;
CREATE TABLE base_4_a (pk INT PRIMARY KEY) ENGINE = InnoDB;
include/rpl_sync.inc
---- GTID_MODE=AUTOMATIC ----
include/gtid_step_reset.inc
SET SESSION DEBUG='+d,rm_table_no_locks_abort_after_atomic_tables';
DROP TABLES base_1_n, base_2_n, base_3_a, base_4_a;
ERROR HY000: Unknown error
SET SESSION DEBUG='-d,rm_table_no_locks_abort_after_atomic_tables';
# In AUTOMATIC mode the above statement should be split into
# two statements for each of MyISAM tables.
# There should be no statement for dropping base_3_a or
# base_4_a as their removal is rolled back.
include/gtid_step_assert.inc [count=2., only_count=0]
# base_3_a and base_4_a should still be there on master
SHOW CREATE TABLE base_3_a;
Table Create Table
base_3_a CREATE TABLE `base_3_a` (
`a` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
SHOW CREATE TABLE base_4_a;
Table Create Table
base_4_a CREATE TABLE `base_4_a` (
`pk` int NOT NULL,
PRIMARY KEY (`pk`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
include/rpl_sync.inc
# base_3_a and base_4_a should still be there on slave
SHOW CREATE TABLE base_3_a;
Table Create Table
base_3_a CREATE TABLE `base_3_a` (
`a` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
SHOW CREATE TABLE base_4_a;
Table Create Table
base_4_a CREATE TABLE `base_4_a` (
`pk` int NOT NULL,
PRIMARY KEY (`pk`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
CREATE TABLE base_1_n (a INT) ENGINE = MyISAM;
CREATE TABLE base_2_n (a INT) ENGINE = MyISAM;
include/rpl_sync.inc
---- GTID_NEXT=non-automatic ----
include/gtid_step_reset.inc
SET GTID_NEXT = '#';
SET SESSION DEBUG='+d,rm_table_no_locks_abort_after_atomic_tables';
DROP TABLES base_1_n, base_2_n, base_3_a, base_4_a;
ERROR HY000: Unknown error
SET SESSION DEBUG='-d,rm_table_no_locks_abort_after_atomic_tables';
SET GTID_NEXT= 'AUTOMATIC';
# With GTID assigned the above statement should not be split.
include/gtid_step_assert.inc [count=1, only_count=0]
# base_3_a and base_4_a should still be there on master
SHOW CREATE TABLE base_3_a;
Table Create Table
base_3_a CREATE TABLE `base_3_a` (
`a` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
SHOW CREATE TABLE base_4_a;
Table Create Table
base_4_a CREATE TABLE `base_4_a` (
`pk` int NOT NULL,
PRIMARY KEY (`pk`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
include/rpl_sync.inc
# base_3_a and base_4_a should still be there on slave
SHOW CREATE TABLE base_3_a;
Table Create Table
base_3_a CREATE TABLE `base_3_a` (
`a` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
SHOW CREATE TABLE base_4_a;
Table Create Table
base_4_a CREATE TABLE `base_4_a` (
`pk` int NOT NULL,
PRIMARY KEY (`pk`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
---- Clean up ----
DROP TABLE base_4_a, base_3_a;
include/rpl_sync.inc
==== Case 3: DROP DATABASE ====
---- Initialize ----
# db1, db2, db3: no tables.
CREATE DATABASE db1;
CREATE DATABASE db2;
CREATE DATABASE db3;
include/rpl_sync.inc
# db4, db5, db6: one table.
CREATE DATABASE db4;
CREATE DATABASE db5;
CREATE DATABASE db6;
CREATE TABLE db4.t1 (a INT);
CREATE TABLE db5.t1 (a INT);
CREATE TABLE db6.t1 (a INT);
include/rpl_sync.inc
# db7, db8, db9: one MyISAM and one InnoDB table.
CREATE DATABASE db7;
CREATE DATABASE db8;
CREATE DATABASE db9;
CREATE TABLE db7.t1 (a INT) ENGINE=InnoDB;
CREATE TABLE db8.t1 (a INT) ENGINE=InnoDB;
CREATE TABLE db9.t1 (a INT) ENGINE=InnoDB;
CREATE TABLE db7.t2 (a INT) ENGINE=MyISAM;
CREATE TABLE db8.t2 (a INT) ENGINE=MyISAM;
CREATE TABLE db9.t2 (a INT) ENGINE=MyISAM;
include/rpl_sync.inc
# db10, db11, db12: two MyISAM and one InnoDB table.
CREATE DATABASE db10;
CREATE DATABASE db11;
CREATE DATABASE db12;
CREATE TABLE db10.t1 (a INT) ENGINE=MyISAM;
CREATE TABLE db11.t1 (a INT) ENGINE=MyISAM;
CREATE TABLE db12.t1 (a INT) ENGINE=MyISAM;
CREATE TABLE db10.t2 (a INT) ENGINE=MyISAM;
CREATE TABLE db11.t2 (a INT) ENGINE=MyISAM;
CREATE TABLE db12.t2 (a INT) ENGINE=MyISAM;
CREATE TABLE db10.t3 (a INT) ENGINE=InnoDB;
CREATE TABLE db11.t3 (a INT) ENGINE=InnoDB;
CREATE TABLE db12.t3 (a INT) ENGINE=InnoDB;
include/rpl_sync.inc
# db13, db14: not a database, but the directory and the entry exist.
# db15 is not a database, but the empty directory exists on master.
include/rpl_sync.inc
# db19, db20: one MyISAM and one InnoDB table (successfull case).
CREATE DATABASE db19;
CREATE DATABASE db20;
CREATE TABLE db19.t1 (a INT) ENGINE=InnoDB;
CREATE TABLE db20.t1 (a INT) ENGINE=InnoDB;
CREATE TABLE db19.t2 (a INT) ENGINE=MyISAM;
CREATE TABLE db20.t2 (a INT) ENGINE=MyISAM;
include/rpl_sync.inc
---- DROP DATABASE is split on master; GTID_NEXT=AUTOMATIC ----
# db1: no table.
include/save_binlog_position.inc
SET GTID_NEXT = 'AUTOMATIC';
SET DEBUG= '+d, rm_db_fail_after_dropping_tables';
DROP DATABASE db1;
ERROR HY000: Unknown error
SET DEBUG= '-d, rm_db_fail_after_dropping_tables';
include/assert_binlog_events.inc [()]
# db4: one InnoDB table.
include/save_binlog_position.inc
SET GTID_NEXT = 'AUTOMATIC';
SET DEBUG= '+d, rm_db_fail_after_dropping_tables';
DROP DATABASE db4;
ERROR HY000: Unknown error
SET DEBUG= '-d, rm_db_fail_after_dropping_tables';
include/assert_binlog_events.inc [()]
# db7: one MyISAM and one InnoDB table.
include/save_binlog_position.inc
SET GTID_NEXT = 'AUTOMATIC';
SET DEBUG= '+d, rm_db_fail_after_dropping_tables';
DROP DATABASE db7;
ERROR HY000: Unknown error
SET DEBUG= '-d, rm_db_fail_after_dropping_tables';
include/assert_binlog_events.inc [Gtid # !Q(DROP TABLE.*)]
# db10: two MyISAM and one InnoDB table.
include/save_binlog_position.inc
SET GTID_NEXT = 'AUTOMATIC';
SET DEBUG= '+d, rm_db_fail_after_dropping_tables';
DROP DATABASE db10;
ERROR HY000: Unknown error
SET DEBUG= '-d, rm_db_fail_after_dropping_tables';
include/assert_binlog_events.inc [Gtid # !Q(DROP TABLE.*) # Gtid # !Q(DROP TABLE.*)]
# db13: not a database, but directory exists.
include/save_binlog_position.inc
SET GTID_NEXT = 'AUTOMATIC';
DROP DATABASE db13;
ERROR HY000: Schema 'db13' does not exist, but schema directory './db13/' was found. This must be resolved manually (e.g. by moving the schema directory to another location).
include/assert_binlog_events.inc [()]
# db16: not a database.
include/save_binlog_position.inc
SET GTID_NEXT = 'AUTOMATIC';
DROP DATABASE db16;
ERROR HY000: Can't drop database 'db16'; database doesn't exist
include/assert_binlog_events.inc [()]
# db19: Successfull DROP DATABASE for one MyISAM and one InnoDB table.
include/save_binlog_position.inc
SET GTID_NEXT = 'AUTOMATIC';
DROP DATABASE db19;
include/assert_binlog_events.inc [Gtid # !Q(DROP TABLE.*) # Gtid # !Q(DROP DATABASE.*)]
---- DROP DATABASE is split on master; GTID_NEXT=non-automatic ----
# db2: no table.
include/save_binlog_position.inc
SET GTID_NEXT = '#';
SET DEBUG= '+d, rm_db_fail_after_dropping_tables';
DROP DATABASE db2;
ERROR HY000: Unknown error
SHOW WARNINGS;
Level Code Message
Error 1105 Unknown error
SET DEBUG= '-d, rm_db_fail_after_dropping_tables';
include/assert_binlog_events.inc [()]
SET GTID_NEXT = 'AUTOMATIC';
# db5: one InnoDB table.
include/save_binlog_position.inc
SET GTID_NEXT = '#';
SET DEBUG= '+d, rm_db_fail_after_dropping_tables';
DROP DATABASE db5;
ERROR HY000: Unknown error
SHOW WARNINGS;
Level Code Message
Error 1105 Unknown error
SET DEBUG= '-d, rm_db_fail_after_dropping_tables';
include/assert_binlog_events.inc [()]
SET GTID_NEXT = 'AUTOMATIC';
# db8: one MyISAM and one InnoDB table.
include/save_binlog_position.inc
SET GTID_NEXT = '#';
SET DEBUG= '+d, rm_db_fail_after_dropping_tables';
DROP DATABASE db8;
ERROR HY000: Unknown error
SHOW WARNINGS;
Level Code Message
Error 1105 Unknown error
SET DEBUG= '-d, rm_db_fail_after_dropping_tables';
include/assert_binlog_events.inc [()]
SET GTID_NEXT = 'AUTOMATIC';
# db11: two MyISAM and one InnoDB tables.
include/save_binlog_position.inc
SET GTID_NEXT = '#';
SET DEBUG= '+d, rm_db_fail_after_dropping_tables';
DROP DATABASE db11;
ERROR HY000: Unknown error
SHOW WARNINGS;
Level Code Message
Error 1105 Unknown error
SET DEBUG= '-d, rm_db_fail_after_dropping_tables';
include/assert_binlog_events.inc [()]
SET GTID_NEXT = 'AUTOMATIC';
# db14: not a database, but directory exists.
include/save_binlog_position.inc
SET GTID_NEXT = '#';
DROP DATABASE db14;
ERROR HY000: Schema 'db14' does not exist, but schema directory './db14/' was found. This must be resolved manually (e.g. by moving the schema directory to another location).
include/assert_binlog_events.inc [()]
SET GTID_NEXT = 'AUTOMATIC';
# db17: not a database.
include/save_binlog_position.inc
SET GTID_NEXT = '#';
DROP DATABASE db17;
ERROR HY000: Can't drop database 'db17'; database doesn't exist
include/assert_binlog_events.inc [()]
SET GTID_NEXT = 'AUTOMATIC';
# db20: Successfull DROP DATABASE for one MyISAM and one InnoDB table.
# No splitting if GTID is assigned.
include/save_binlog_position.inc
SET GTID_NEXT = '#';
DROP DATABASE db20;
include/assert_binlog_events.inc [Gtid # !Q(DROP DATABASE.*)]
SET GTID_NEXT = 'AUTOMATIC';
include/rpl_sync.inc
---- DROP DATABASE is split on slave ----
SET GTID_NEXT = 'AUTOMATIC';
SET GLOBAL DEBUG= '+d, rm_db_fail_after_dropping_tables';
[connection master]
# db3: no table.
DROP DATABASE db3;
include/sync_slave_io_with_master.inc
include/wait_for_slave_sql_error.inc [errno=1105]
include/include/rpl_skip_to_end_of_relay_log.inc
[connection master]
# db6: one InnoDB table.
DROP DATABASE db6;
include/sync_slave_io_with_master.inc
include/wait_for_slave_sql_error.inc [errno=1105]
include/include/rpl_skip_to_end_of_relay_log.inc
[connection master]
# db9: one MyISAM and one InnoDB table.
DROP DATABASE db9;
include/sync_slave_io_with_master.inc
include/wait_for_slave_sql_error.inc [errno=1105]
include/include/rpl_skip_to_end_of_relay_log.inc
[connection master]
# db12: two MyISAM and one InnoDB table.
DROP DATABASE db12;
include/sync_slave_io_with_master.inc
include/wait_for_slave_sql_error.inc [errno=1105]
include/include/rpl_skip_to_end_of_relay_log.inc
SET GLOBAL DEBUG= '-d, rm_db_fail_after_dropping_tables';
[connection master]
# db15: not a database, but an empty directory exists.
DROP DATABASE db15;
ERROR HY000: Schema 'db15' does not exist, but schema directory './db15/' was found. This must be resolved manually (e.g. by moving the schema directory to another location).
---- Clean up ----
DROP DATABASE db1;
DROP DATABASE db2;
DROP DATABASE IF EXISTS db3;
Warnings:
Note 1008 Can't drop database 'db3'; database doesn't exist
DROP DATABASE db4;
DROP DATABASE db5;
DROP DATABASE IF EXISTS db6;
Warnings:
Note 1008 Can't drop database 'db6'; database doesn't exist
DROP DATABASE db7;
DROP DATABASE db8;
DROP DATABASE IF EXISTS db9;
Warnings:
Note 1008 Can't drop database 'db9'; database doesn't exist
DROP DATABASE db10;
DROP DATABASE db11;
DROP DATABASE IF EXISTS db12;
Warnings:
Note 1008 Can't drop database 'db12'; database doesn't exist
include/rpl_sync.inc
include/rpl_end.inc
|