1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00
Files
mariadb/storage/tokudb/mysql-test/tokudb_bugs/r/5554.result
Sergei Golubchik 9a3b9a5416 tokudb test suites
2013-09-09 13:59:38 +02:00

32 lines
390 B
Plaintext

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;