mariadb/mysql-test/suite/tokudb.bugs/r/1938.result
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

44 lines
434 B
Text
Executable file

SET DEFAULT_STORAGE_ENGINE = 'tokudb';
DROP TABLE IF EXISTS foo;
create table foo ( a int);
insert into foo values (1),(2),(22),(3),(4);
select * from foo;
a
1
2
22
3
4
begin;
delete from foo;
select * from foo;
a
rollback;
select * from foo;
a
1
2
22
3
4
insert into foo values (1),(2),(22),(3),(4);
select * from foo;
a
1
2
22
3
4
1
2
22
3
4
begin;
delete from foo;
select * from foo;
a
commit;
select * from foo;
a
DROP TABLE foo;