mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 20:11:42 +01:00
31ee98580d
git-svn-id: file:///svn/mysql/tests/mysql-test@23577 c7de825b-a66e-492c-adef-691d508d4ae1
99 lines
No EOL
2.3 KiB
Text
99 lines
No EOL
2.3 KiB
Text
#--source include/have_tokudb.inc
|
|
SET STORAGE_ENGINE='tokudb';
|
|
|
|
--disable_warnings
|
|
DROP TABLE IF EXISTS t1;
|
|
--enable_warnings
|
|
|
|
create table t1(a int, b int, c int, d int, primary key(a), clustering key(b), key (c))engine=tokudb;
|
|
|
|
insert into t1 values (1,10,100,1000),(2,20,200,2000),(3,30,300,3000),(4,40,400,4000),(5,50,500,5000),(6,60,600,6000),(7,70,700,7000),(8,80,800,8000),(9,90,900,9000);
|
|
|
|
|
|
#normal queries
|
|
explain select * from t1 where a > 5;
|
|
select * from t1 where a > 5;
|
|
|
|
explain select * from t1 where b > 30;
|
|
select * from t1 where b > 30;
|
|
|
|
explain select * from t1 where c > 750;
|
|
select * from t1 where c > 750;
|
|
|
|
#covering indexes
|
|
explain select a from t1 where a > 5;
|
|
select a from t1 where a > 5;
|
|
|
|
explain select a,b from t1 where b > 30;
|
|
select a,b from t1 where b > 30;
|
|
|
|
explain select a,b from t1 where c > 750;
|
|
select a,c from t1 where c > 750;
|
|
|
|
update t1 set c = c+5, b = b+5 where b>30;
|
|
|
|
explain select * from t1 where a > 5;
|
|
select * from t1 where a > 5;
|
|
|
|
explain select * from t1 where b > 30;
|
|
select * from t1 where b > 30;
|
|
|
|
explain select * from t1 where c > 750;
|
|
select * from t1 where c > 750;
|
|
|
|
#covering indexes
|
|
explain select a from t1 where a > 5;
|
|
select a from t1 where a > 5;
|
|
|
|
explain select a,b from t1 where b > 30;
|
|
select a,b from t1 where b > 30;
|
|
|
|
explain select a,b from t1 where c > 750;
|
|
select a,c from t1 where c > 750;
|
|
|
|
|
|
alter table t1 drop primary key;
|
|
explain select * from t1 where a > 5;
|
|
select * from t1 where a > 5;
|
|
|
|
explain select * from t1 where b > 30;
|
|
select * from t1 where b > 30;
|
|
|
|
explain select * from t1 where c > 750;
|
|
select * from t1 where c > 750;
|
|
|
|
#covering indexes
|
|
explain select a from t1 where a > 5;
|
|
select a from t1 where a > 5;
|
|
|
|
explain select a,b from t1 where b > 30;
|
|
select a,b from t1 where b > 30;
|
|
|
|
explain select a,b from t1 where c > 750;
|
|
select a,c from t1 where c > 750;
|
|
|
|
update t1 set c = c+5, b = b+5 where b>30;
|
|
select * from t1;
|
|
|
|
|
|
explain select * from t1 where a > 5;
|
|
select * from t1 where a > 5;
|
|
|
|
explain select * from t1 where b > 30;
|
|
select * from t1 where b > 30;
|
|
|
|
explain select * from t1 where c > 750;
|
|
select * from t1 where c > 750;
|
|
|
|
#covering indexes
|
|
explain select a from t1 where a > 5;
|
|
select a from t1 where a > 5;
|
|
|
|
explain select a,b from t1 where b > 30;
|
|
select a,b from t1 where b > 30;
|
|
|
|
explain select a,b from t1 where c > 750;
|
|
select a,c from t1 where c > 750;
|
|
|
|
|
|
drop table t1; |