diff options
author | unknown <monty@hundin.mysql.fi> | 2001-11-29 22:27:58 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-11-29 22:27:58 +0200 |
commit | 95e94560eac0ee72bbc566517ca70f14128a01e8 (patch) | |
tree | d7d0963214131e4c0e4c0ba77984ac70a3c15ae9 | |
parent | 38e439d819ded80625c528dc967b1344691b3926 (diff) | |
download | mariadb-git-95e94560eac0ee72bbc566517ca70f14128a01e8.tar.gz |
Update test results
mysql-test/r/fulltext.result:
Update results
-rw-r--r-- | mysql-test/r/fulltext.result | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result index 17885290d46..839db356e74 100644 --- a/mysql-test/r/fulltext.result +++ b/mysql-test/r/fulltext.result @@ -55,6 +55,9 @@ Full-text indexes are called collections 1 Only MyISAM tables support collections 2 Function MATCH ... AGAINST() is used to do a search 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%"; update t1 set a='some test foobar' where MATCH a,b AGAINST ('model'); delete from t1 where MATCH(a,b) AGAINST ("indexes"); |