summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb_undo/r/truncate.result
blob: 4f62d85e08ab687623a65c734bdff7830ac32013 (plain)
1
2
3
4
5
6
7
8
9
10
11
SET GLOBAL innodb_fast_shutdown=0;
create table t1(keyc int primary key, c1 char(100)) engine = innodb;
begin;
update t1 set c1 = 'mysql';
update t1 set c1 = 'oracle';
delete from t1;
commit;
drop table t1;
SET GLOBAL innodb_fast_shutdown=0;
SET GLOBAL innodb_undo_log_truncate=1;
SET GLOBAL innodb_purge_rseg_truncate_frequency=1;