summaryrefslogtreecommitdiff
path: root/mysql-test/main/fulltext_derived_4316.result
blob: 141202c9842c8b054862c72c5cd00b146f0e9ace (plain)
1
2
3
4
5
6
7
8
create table t1 (ft text) engine=myisam;
insert into t1 values ('test1'),('test2');
select distinct match(ft) against("test1" in boolean mode) from
(select distinct ft from t1) as t;
match(ft) against("test1" in boolean mode)
1
0
drop table t1;