mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge xiphis.org:/anubis/antony/work/p2-bug25714.1
into xiphis.org:/anubis/antony/work/p2-bug25714.1.merge-5.0
This commit is contained in:
56
mysql-test/r/federated_bug_25714.result
Normal file
56
mysql-test/r/federated_bug_25714.result
Normal file
@ -0,0 +1,56 @@
|
||||
stop slave;
|
||||
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
||||
reset master;
|
||||
reset slave;
|
||||
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
||||
start slave;
|
||||
stop slave;
|
||||
DROP DATABASE IF EXISTS federated;
|
||||
CREATE DATABASE federated;
|
||||
DROP DATABASE IF EXISTS federated;
|
||||
CREATE DATABASE federated;
|
||||
DROP TABLE IF EXISTS federated.bug_13118_table;
|
||||
CREATE TABLE federated.t1 (
|
||||
`id` int auto_increment primary key,
|
||||
`value` int
|
||||
) ENGINE=MyISAM;
|
||||
INSERT INTO federated.t1 SET value=1;
|
||||
INSERT INTO federated.t1 SET value=2;
|
||||
INSERT INTO federated.t1 SET value=2;
|
||||
DROP TABLE IF EXISTS federated.t1;
|
||||
CREATE TABLE federated.t1 (
|
||||
`id` int auto_increment primary key,
|
||||
`value` int
|
||||
) ENGINE=FEDERATED
|
||||
CONNECTION='mysql://root@127.0.0.1:SLAVE_PORT/federated/t1';
|
||||
SELECT * from federated.t1;
|
||||
id value
|
||||
1 1
|
||||
2 2
|
||||
3 2
|
||||
INSERT INTO federated.t1 SET value=4;
|
||||
SELECT LAST_INSERT_ID();
|
||||
LAST_INSERT_ID()
|
||||
4
|
||||
|
||||
5 inserted
|
||||
6 inserted
|
||||
|
||||
7 inserted
|
||||
8 inserted
|
||||
SELECT * from federated.t1;
|
||||
id value
|
||||
1 1
|
||||
2 2
|
||||
3 2
|
||||
4 4
|
||||
5 54
|
||||
6 55
|
||||
7 54
|
||||
8 55
|
||||
DROP TABLE federated.t1;
|
||||
DROP TABLE federated.t1;
|
||||
DROP TABLE IF EXISTS federated.t1;
|
||||
DROP DATABASE IF EXISTS federated;
|
||||
DROP TABLE IF EXISTS federated.t1;
|
||||
DROP DATABASE IF EXISTS federated;
|
2
mysql-test/r/have_bug25714.require
Normal file
2
mysql-test/r/have_bug25714.require
Normal file
@ -0,0 +1,2 @@
|
||||
have_bug25714_exe
|
||||
1
|
Reference in New Issue
Block a user