summaryrefslogtreecommitdiff
path: root/mysql-test/suite/vcol/t/delayed.test
blob: 62065abdba83f581baf49f0d67bdf00b0aedbfb5 (plain)
1
2
3
4
5
create table t (a int primary key, b int, c int as (b), index (c));
insert t (a,b) values (10,1);
replace delayed t (a,b) values (10,5);
check table t;
drop table t;