⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.124
Server IP:
50.28.103.30
Server:
Linux host.jcukjv-lwsites.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
Server Software:
nginx/1.28.0
PHP Version:
8.3.12
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
www
/
server
/
mysql
/
mysql-test
/
suite
/
ndb
/
t
/
View File Name :
ndb_fk_db.test
-- source include/have_ndb.inc create database mydb0; use mydb0; create table parent ( a int primary key, b int not null, c int not null, unique(b) using hash, index(c)) engine = ndb; create database mydb1; use mydb1; create table child ( a int primary key, b int not null, c int not null, constraint fk1 foreign key(a) references mydb0.parent (a), unique(b) using hash, index(c)) engine = ndb; show create table child; alter table child algorithm=copy, add constraint fk2 foreign key (b) references mydb0.parent(a); show create table child; alter table child algorithm=inplace, add constraint fk3 foreign key (c) references mydb0.parent(a); show create table child; alter table child algorithm=copy, drop foreign key fk2; show create table child; alter table child algorithm=inplace, drop foreign key fk3; show create table child; alter table mydb0.parent algorithm=copy, rename mydb1.parent; show create table child; alter table mydb1.parent algorithm=inplace, rename mydb0.parent; show create table child; use test; alter table mydb1.child algorithm=copy, add constraint fk2 foreign key (b) references mydb0.parent(a); use mydb1; show create table child; use test; alter table mydb1.child algorithm=inplace, add constraint fk3 foreign key (c) references mydb0.parent(a); use mydb1; show create table child; # bug#16286164: the fix requires correct DROP order use test; drop database mydb1; drop database mydb0; # # # let $i=2; while ($i) { eval set @i=$i; let $engine=`select if(@i=1,'ndb','innodb')`; create database mydb0; use mydb0; eval create table t0 (a int primary key) engine = $engine; eval create table t1 (a int primary key) engine = $engine; alter table mydb0.t0 add constraint fk0 foreign key (a) references mydb0.t1(a); alter table mydb0.t1 add constraint fk1 foreign key (a) references mydb0.t0(a); drop database mydb0; dec $i; } let $i=2; while ($i) { eval set @i=$i; let $engine=`select if(@i=1,'ndb','innodb')`; create database mydb0; use mydb0; eval create table t0 (a int primary key) engine = $engine; create database mydb1; use mydb1; eval create table t1 (a int primary key) engine = $engine; alter table mydb0.t0 add constraint fk0 foreign key (a) references mydb1.t1(a); alter table mydb1.t1 add constraint fk1 foreign key (a) references mydb0.t0(a); --error 1217 drop database mydb0; --error 1217 drop database mydb1; alter table mydb0.t0 drop foreign key fk0; --error 1217 drop database mydb0; # t1 point into mydb0, but this is ok drop database mydb1; drop database mydb0; dec $i; }