mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
f45f072491
git-svn-id: file:///svn/mysql/tests/mysql-test@23577 c7de825b-a66e-492c-adef-691d508d4ae1
22 lines
No EOL
462 B
Text
Executable file
22 lines
No EOL
462 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
|
|
|
|
set session transaction isolation level read uncommitted;
|
|
create table foo (a int) engine=TokuDB;
|
|
|
|
insert into foo values (1),(2),(3);
|
|
select * from foo;
|
|
update foo set a=a+1;
|
|
select * from foo;
|
|
delete from foo;
|
|
select * from foo;
|
|
|
|
|
|
# Final cleanup.
|
|
DROP TABLE foo; |