mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge
This commit is contained in:
@ -192,3 +192,12 @@ a b
|
||||
2 fullaaa fullzzz
|
||||
1 I wonder why the fulltext index doesnt work?
|
||||
drop table t1;
|
||||
CREATE TABLE t1 ( id int(11) NOT NULL auto_increment primary key, mytext text NOT NULL, FULLTEXT KEY mytext (mytext)) TYPE=MyISAM;
|
||||
INSERT INTO t1 VALUES (1,'my small mouse'),(2,'la-la-la'),(3,'It is so funny'),(4,'MySQL Tutorial');
|
||||
select 8 from t1;
|
||||
8
|
||||
8
|
||||
8
|
||||
8
|
||||
8
|
||||
drop table t1;
|
||||
|
@ -154,4 +154,8 @@ insert into t1 values (2,"fullaaa fullzzz");
|
||||
select * from t1 where match b against ('full*' in boolean mode);
|
||||
|
||||
drop table t1;
|
||||
CREATE TABLE t1 ( id int(11) NOT NULL auto_increment primary key, mytext text NOT NULL, FULLTEXT KEY mytext (mytext)) TYPE=MyISAM;
|
||||
INSERT INTO t1 VALUES (1,'my small mouse'),(2,'la-la-la'),(3,'It is so funny'),(4,'MySQL Tutorial');
|
||||
select 8 from t1;
|
||||
drop table t1;
|
||||
|
||||
|
Reference in New Issue
Block a user