mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
84c96a263e
(simply, copied from FederatedX)
23 lines
570 B
Text
23 lines
570 B
Text
#
|
|
# Inspired by a bug fix for internal Oracle MySQL bug#16324629
|
|
#
|
|
source include/federated.inc;
|
|
|
|
connection slave;
|
|
create table federated.t1 (a int, b int, unique key (a), key (b));
|
|
|
|
connection master;
|
|
|
|
--replace_result $SLAVE_MYPORT SLAVE_PORT
|
|
eval create table t1 (a int, b int, unique key (a), key (b))
|
|
engine=federated CONNECTION='mysql://root@127.0.0.1:$SLAVE_MYPORT/federated/t1';
|
|
|
|
insert into t1 values (3, 3), (7, 7);
|
|
delete t1 from t1 where a = 3;
|
|
select * from t1;
|
|
drop table t1;
|
|
|
|
connection slave;
|
|
connection default;
|
|
source include/federated_cleanup.inc;
|
|
|