mariadb/storage/tokudb/mysql-test/tokudb_bugs/t/2043.test
2013-09-09 13:59:38 +02:00

22 lines
471 B
Text

# 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 session transaction isolation level read uncommitted;
create table foo (a int) engine=TokuDB;
insert into foo values (1),(2),(3);
select * from foo;
update foo set a=a+1;
select * from foo;
delete from foo;
select * from foo;
# Final cleanup.
DROP TABLE foo;