mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
"duplicated rows" bug
This commit is contained in:
@@ -173,4 +173,9 @@ CREATE TABLE t1 (a int(11), b text, FULLTEXT KEY (b)) TYPE=MyISAM;
|
||||
insert into t1 values (1,"I wonder why the fulltext index doesnt work?");
|
||||
SELECT * from t1 where MATCH (b) AGAINST ('apples');
|
||||
a b
|
||||
insert into t1 values (2,"fullaaa fullzzz");
|
||||
select * from t1 where match b against ('full*' in boolean mode);
|
||||
a b
|
||||
2 fullaaa fullzzz
|
||||
1 I wonder why the fulltext index doesnt work?
|
||||
drop table t1;
|
||||
|
||||
@@ -145,4 +145,8 @@ CREATE TABLE t1 (a int(11), b text, FULLTEXT KEY (b)) TYPE=MyISAM;
|
||||
insert into t1 values (1,"I wonder why the fulltext index doesnt work?");
|
||||
SELECT * from t1 where MATCH (b) AGAINST ('apples');
|
||||
|
||||
insert into t1 values (2,"fullaaa fullzzz");
|
||||
select * from t1 where match b against ('full*' in boolean mode);
|
||||
|
||||
drop table t1;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user