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:
@@ -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%";
|
||||
|
||||
Reference in New Issue
Block a user