mariadb/storage/tokudb/mysql-test/tokudb_bugs/t/1938.test

30 lines
537 B
Text
Raw Normal View History

# 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
create table foo ( a int);
insert into foo values (1),(2),(22),(3),(4);
select * from foo;
begin;
delete from foo;
select * from foo;
rollback;
select * from foo;
insert into foo values (1),(2),(22),(3),(4);
select * from foo;
begin;
delete from foo;
select * from foo;
commit;
select * from foo;
# Final cleanup.
2013-09-09 13:59:38 +02:00
DROP TABLE foo;