mariadb/mysql-test/suite/tokudb.bugs/t/1949.test
Rich Prohaska 9e90516b35 refs #5545 use default_storage_engine in mysql tokudb.bugs tests
git-svn-id: file:///svn/mysql/tests/mysql-test@48570 c7de825b-a66e-492c-adef-691d508d4ae1
2012-10-03 22:35:02 +00:00

33 lines
No EOL
590 B
Text
Executable file

# 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;