mariadb/mysql-test/suite/tokudb.bugs/t/1938.test
Zardosht Kasheff 31ee98580d [t:2918], add tests to a common directory
git-svn-id: file:///svn/mysql/tests/mysql-test@23577 c7de825b-a66e-492c-adef-691d508d4ae1
2010-09-07 16:06:33 +00:00

29 lines
No EOL
529 B
Text
Executable file

# ticket 895 is a query optimization problem with the primary key
#--source include/have_tokudb.inc
SET 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.
DROP TABLE foo;