summaryrefslogtreecommitdiff
path: root/mysql-test/suite/tokudb.bugs/t/1949.test
blob: 82deff17bc9434a29e321228680b7c352e75eeec (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
25
26
27
28
29
30
31
32
33
# ticket 895 is a query optimization problem with the primary key

--source include/have_tokudb.inc
SET DEFAULT_STORAGE_ENGINE = 'tokudb';

--disable_warnings
DROP TABLE IF EXISTS foo;
--enable_warnings
set autocommit=off;

create table foo ( a int);
select * from foo;

lock tables foo write;

insert into foo values (1);
select * from foo;
rollback;
select * From foo;
insert into foo values (2);
select * from foo;
commit;
select * From foo;
insert into foo values (3);
select * from foo;
rollback;
select * From foo;

unlock tables;

# Final cleanup.
set autocommit=on;
DROP TABLE foo;