mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
7cadc6e711
Fixed problem with LIKE with latin1_de Added parsing support of UNSIGNED LONG LONG
12 lines
323 B
Text
12 lines
323 B
Text
#
|
|
# Test of like
|
|
#
|
|
|
|
drop table if exists t1;
|
|
create table t1 (a varchar(10), key(a));
|
|
insert into t1 values ("a"),("abc"),("abcd"),("hello"),("test");
|
|
select * from t1 where a like "abc%";
|
|
select * from t1 where a like "ABC%";
|
|
select * from t1 where a like "test%";
|
|
select * from t1 where a like "te_t";
|
|
drop table t1;
|