summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/vcol/t/innodb_virtual_fk.test
blob: c364adaa6131efaab06bb997f44eb1b134d9c887 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
source include/have_innodb.inc;
set default_storage_engine=innodb;

#
# MDEV-13708 Crash with indexed virtual columns and FK cascading deletes
#

create table t1 (id int primary key, id2 int as (id) virtual, key id2 (id2));
create table t2 (id int key, constraint fk_id foreign key (id) references t1 (id) on delete cascade);
insert into t1 (id) values (1), (2);
insert into t2 (id) values (1), (2);
delete from t1;
select * from t1;
select * from t2;
drop table t2;
drop table t1;