mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +01:00
9e90516b35
git-svn-id: file:///svn/mysql/tests/mysql-test@48570 c7de825b-a66e-492c-adef-691d508d4ae1
13 lines
450 B
Text
Executable file
13 lines
450 B
Text
Executable file
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
|
|
DROP TABLE IF EXISTS foo;
|
|
create table foo (a int, b int, c int, clustering key (a))engine=tokudb;
|
|
insert into foo values (1,1,1),(1,2,2),(1,3,3),(2,1,4),(2,2,5),(2,3,6),(3,1,7),(3,2,8);
|
|
explain select * From foo where a = 2;
|
|
id select_type table type possible_keys key key_len ref rows Extra
|
|
1 SIMPLE foo ref a a 5 const NULL; Using where
|
|
select * From foo where a = 2;
|
|
a b c
|
|
2 1 4
|
|
2 2 5
|
|
2 3 6
|
|
DROP TABLE foo;
|