1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

simple optimzation

Portability fixes
This commit is contained in:
monty@mysql.com
2004-03-31 03:32:38 +03:00
parent fede76ddf2
commit ddafa2cc16
9 changed files with 27 additions and 20 deletions

View File

@@ -111,6 +111,7 @@ drop table t1;
create table t1 (btn char(10) not null, key using BTREE (btn)) engine=heap;
insert into t1 values ("hello"),("hello"),("hello"),("hello"),("hello"),("a"),("b"),("c"),("d"),("e"),("f"),("g"),("h"),("i");
explain select * from t1 where btn like "i%";
--replace_column 9 #
explain select * from t1 where btn like "h%";
explain select * from t1 where btn like "a%";
explain select * from t1 where btn like "b%";