summaryrefslogtreecommitdiff
path: root/mysql-test/suite/federated/error_row_number.result
blob: a53f3a87a177acde1dbc62ab9e5075ece0111dfc (plain)
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
#
#    MDEV-26654 ROW_NUMBER is wrong upon INSERT into Federated table
#
connect  master,127.0.0.1,root,,test,$MASTER_MYPORT,;
connect  slave,127.0.0.1,root,,test,$SLAVE_MYPORT,;
connection master;
CREATE DATABASE federated;
connection slave;
CREATE DATABASE federated;
connection master;
create table t (pk int primary key);
create table tfed engine=FEDERATED connection='mysql://root@localhost:$MASTER_MYPORT/test/t';
insert into tfed values (1),(2),(1);
ERROR 23000: Can't write; duplicate key in table 'tfed'
get diagnostics condition 1 @val = row_number;
# federated is doing bulk insert here, the exact row number is unknown
select @val;
@val
0
drop table tfed, t;
connection master;
DROP TABLE IF EXISTS federated.t1;
DROP DATABASE IF EXISTS federated;
connection slave;
DROP TABLE IF EXISTS federated.t1;
DROP DATABASE IF EXISTS federated;