mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
fulltext and left join bug fixed
This commit is contained in:
@ -5,6 +5,9 @@ INSERT INTO t1 VALUES('MySQL has now support', 'for full-text search'),
|
||||
('Only MyISAM tables','support collections'),
|
||||
('Function MATCH ... AGAINST()','is used to do a search'),
|
||||
('Full-text search in MySQL', 'implements vector space model');
|
||||
explain select * from t1 where MATCH(a,b) AGAINST ("collections");
|
||||
table type possible_keys key key_len ref rows Extra
|
||||
t1 fulltext a a 0 1 Using where
|
||||
select * from t1 where MATCH(a,b) AGAINST ("collections");
|
||||
a b
|
||||
Only MyISAM tables support collections
|
||||
|
Reference in New Issue
Block a user