Commit ff28d3b3 authored by Zardosht Kasheff's avatar Zardosht Kasheff

refs #5554, add simple mysql test

git-svn-id: file:///svn/mysql/tests/mysql-test@51908 c7de825b-a66e-492c-adef-691d508d4ae1
parent fd46d324
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
DROP TABLE IF EXISTS foo;
set session autocommit=on;
create table foo (a int);
insert into foo values (1);
select * from foo;
a
1
begin;
select * from foo;
a
1
insert into foo values(2);
select * from foo;
a
1
2
commit;
set session autocommit=off;
select * from foo;
a
1
2
insert into foo values(2);
select * from foo;
a
1
2
2
commit;
DROP TABLE foo;
--source include/have_tokudb.inc
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
--disable_warnings
DROP TABLE IF EXISTS foo;
--enable_warnings
#
# Some simple tests for read only transactions
#
set session autocommit=on;
create table foo (a int);
# simple insert then select
insert into foo values (1);
select * from foo;
#simple insert then select in a begin/commit block
begin;
select * from foo;
insert into foo values(2);
select * from foo;
commit;
#simple insert then select when autocommit is off
set session autocommit=off;
select * from foo;
insert into foo values(2);
select * from foo;
commit;
# Final cleanup.
DROP TABLE foo;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment