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

Optimize thai character handling

Remove sel000xxxx tests
After merge fixes
This commit is contained in:
monty@mashka.mysql.fi
2003-09-12 04:18:07 +03:00
parent 7538242e4f
commit 04c43fca8e
12 changed files with 222 additions and 222 deletions

View File

@@ -217,3 +217,11 @@ explain select * from t1, t2 where (t1.key1 <t2.keya + 1) and t2.keya=3;
explain select * from t1 force index(i2), t2 where (t1.key1 <t2.keya + 1) and t2.keya=3;
DROP TABLE t1,t2;
# test for a bug with in() and unique key
create table t1 (id int(10) primary key);
insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9);
select id from t1 where id in (2,5,9) ;
select id from t1 where id=2 or id=5 or id=9 ;
drop table t1;