summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/index_vcol_purge_startup.result
blob: 5603c14acf3881c3ab44d864506bee35561749da (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
call mtr.add_suppression('SQL_ERROR_LOG');
call mtr.add_suppression('Failed to initialize plugins');
call mtr.add_suppression('Aborting');
create table t1(a int primary key, b int as (100-a*a), index(b)) engine=innodb;
insert t1 (a) values(1),(2),(3);
start transaction;
select * from t1 order by a;
a	b
1	99
2	96
3	91
connect con1, localhost, root;
delete from t1 where a=2;
flush tables;
connection default;
# Kill the server
# Failed restart
# Start the server
# restart
select * from t1 order by a;
a	b
1	99
3	91
drop table t1;