mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 23:34:34 +01:00
29 lines
529 B
Text
29 lines
529 B
Text
|
# 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
|
||
|
|
||
|
create table foo ( a int);
|
||
|
insert into foo values (1),(2),(22),(3),(4);
|
||
|
select * from foo;
|
||
|
begin;
|
||
|
delete from foo;
|
||
|
select * from foo;
|
||
|
rollback;
|
||
|
select * from foo;
|
||
|
|
||
|
insert into foo values (1),(2),(22),(3),(4);
|
||
|
select * from foo;
|
||
|
begin;
|
||
|
delete from foo;
|
||
|
select * from foo;
|
||
|
commit;
|
||
|
select * from foo;
|
||
|
|
||
|
|
||
|
# Final cleanup.
|
||
|
DROP TABLE foo;
|