1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

test moved to an appropriate file

This commit is contained in:
serg@serg.mylan
2004-01-21 23:39:35 +01:00
parent 0371c68e3e
commit faa8252b10
4 changed files with 19 additions and 19 deletions

View File

@ -395,3 +395,11 @@ concat(a,'.')
aaa.
aaa .
drop table t1;
create table t1(a text not null, b text not null, c text not null, index (a(10),b(10),c(10)));
insert into t1 values('807780', '477', '165');
insert into t1 values('807780', '477', '162');
insert into t1 values('807780', '472', '162');
select * from t1 where a='807780' and b='477' and c='165';
a b c
807780 477 165
drop table t1;