blob: ba3ac5c1c65f5341d6f7483f8b1a12e7d8f5526a (
plain)
1
2
3
4
5
6
7
|
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;
Table Op Msg_type Msg_text
test.t check status OK
drop table t;
|