mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 07:44:22 +01:00
31ee98580d
git-svn-id: file:///svn/mysql/tests/mysql-test@23577 c7de825b-a66e-492c-adef-691d508d4ae1
11 lines
385 B
Text
Executable file
11 lines
385 B
Text
Executable file
SET STORAGE_ENGINE = 'tokudb';
|
|
DROP TABLE IF EXISTS foo;
|
|
create table foo (a blob, key (a(3)))engine=tokudb;
|
|
insert into foo value ("asfdasdfasdfasdf");
|
|
explain select * from foo where a like 'asf%';
|
|
id select_type table type possible_keys key key_len ref rows Extra
|
|
1 SIMPLE foo range a a 6 NULL 1 Using where
|
|
select * from foo where a like 'asf%';
|
|
a
|
|
asfdasdfasdfasdf
|
|
DROP TABLE foo;
|