mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
Update test results
mysql-test/r/fulltext.result: Update results
This commit is contained in:
parent
38e439d819
commit
95e94560ea
1 changed files with 3 additions and 0 deletions
|
@ -55,6 +55,9 @@ Full-text indexes are called collections 1
|
||||||
Only MyISAM tables support collections 2
|
Only MyISAM tables support collections 2
|
||||||
Function MATCH ... AGAINST() is used to do a search 0
|
Function MATCH ... AGAINST() is used to do a search 0
|
||||||
Full-text search in MySQL implements vector space model 0
|
Full-text search in MySQL implements vector space model 0
|
||||||
|
select * from t1 where MATCH a AGAINST ("search" IN BOOLEAN MODE);
|
||||||
|
a b
|
||||||
|
Full-text search in MySQL implements vector space model
|
||||||
delete from t1 where a like "MySQL%";
|
delete from t1 where a like "MySQL%";
|
||||||
update t1 set a='some test foobar' where MATCH a,b AGAINST ('model');
|
update t1 set a='some test foobar' where MATCH a,b AGAINST ('model');
|
||||||
delete from t1 where MATCH(a,b) AGAINST ("indexes");
|
delete from t1 where MATCH(a,b) AGAINST ("indexes");
|
||||||
|
|
Loading…
Reference in a new issue