mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 06:22:28 +01:00
0eda48463c
Text conflict in mysql-test/collections/default.experimental Text conflict in mysql-test/r/show_check.result Text conflict in mysql-test/r/sp-code.result Text conflict in mysql-test/suite/binlog/r/binlog_tmp_table.result Text conflict in mysql-test/suite/rpl/t/disabled.def Text conflict in mysql-test/t/show_check.test Text conflict in mysys/my_delete.c Text conflict in sql/item.h Text conflict in sql/item_cmpfunc.h Text conflict in sql/log.cc Text conflict in sql/mysqld.cc Text conflict in sql/repl_failsafe.cc Text conflict in sql/slave.cc Text conflict in sql/sql_parse.cc Text conflict in sql/sql_table.cc Text conflict in sql/sql_yacc.yy Text conflict in storage/myisam/ha_myisam.cc Corrected results for stm_auto_increment_bug33029.reject 2009-12-01 20:01:49.000000000 +0300 <andrei> @@ -42,9 +42,6 @@ <andrei> RETURN i; <andrei> END// <andrei> CALL p1(); <andrei> -Warnings: <andrei> -Note 1592 Statement may not be safe to log in statement format. <andrei> -Note 1592 Statement may not be safe to log in statement format. There should be indeed no Note present because there is in fact autoincrement top-level query in sp() that triggers inserting in yet another auto-inc table. (todo: alert DaoGang to improve the test).
66 lines
1.2 KiB
Text
66 lines
1.2 KiB
Text
#multi delete replication bugs
|
|
|
|
|
|
source include/master-slave.inc;
|
|
|
|
#BUG#11139 - improper wild-table and table rules
|
|
#checking for multi deletes with an alias
|
|
|
|
connection master;
|
|
set sql_log_bin=0;
|
|
create database mysqltest_from;
|
|
set sql_log_bin=1;
|
|
|
|
connection slave;
|
|
create database mysqltest_to;
|
|
|
|
|
|
connection master;
|
|
use mysqltest_from;
|
|
--disable_warnings
|
|
drop table if exists a;
|
|
--enable_warnings
|
|
CREATE TABLE a (i INT);
|
|
INSERT INTO a VALUES(1);
|
|
DELETE alias FROM a alias WHERE alias.i=1;
|
|
SELECT * FROM a;
|
|
insert into a values(2),(3);
|
|
delete alias FROM a alias where alias.i=2;
|
|
select * from a;
|
|
sync_slave_with_master;
|
|
|
|
use mysqltest_to;
|
|
select * from a;
|
|
|
|
# BUG#3461
|
|
connection master;
|
|
create table t1 (a int primary key);
|
|
create table t2 (a int);
|
|
|
|
insert into t1 values (1);
|
|
insert into t2 values (1);
|
|
|
|
delete t1.* from t1, t2 where t1.a = t2.a;
|
|
|
|
save_master_pos;
|
|
select * from t1;
|
|
select * from t2;
|
|
|
|
connection slave;
|
|
# BUG#3461 would cause sync to fail
|
|
sync_with_master;
|
|
error 1146;
|
|
select * from t1;
|
|
error 1146;
|
|
select * from t2;
|
|
|
|
# cleanup
|
|
connection master;
|
|
set sql_log_bin=0;
|
|
drop database mysqltest_from;
|
|
set sql_log_bin=1;
|
|
connection slave;
|
|
drop database mysqltest_to;
|
|
|
|
# End of 4.1 tests
|
|
|