summaryrefslogtreecommitdiff
path: root/mysql-test/r/fulltext.result
diff options
context:
space:
mode:
authorunknown <serg@serg.mysql.com>2001-12-12 12:25:20 +0100
committerunknown <serg@serg.mysql.com>2001-12-12 12:25:20 +0100
commit22b5bfbfbc6173c4d95bd69c069b7bfaed45aaf9 (patch)
tree5a8e263615a4893d4db7dc2dd2c488c955b62846 /mysql-test/r/fulltext.result
parent9152ef4b430c1ee0095a6e251030edf212cc9d20 (diff)
downloadmariadb-git-22b5bfbfbc6173c4d95bd69c069b7bfaed45aaf9.tar.gz
test added
Diffstat (limited to 'mysql-test/r/fulltext.result')
-rw-r--r--mysql-test/r/fulltext.result6
1 files changed, 5 insertions, 1 deletions
diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result
index 68d3b6ecc62..d3038acdc5c 100644
--- a/mysql-test/r/fulltext.result
+++ b/mysql-test/r/fulltext.result
@@ -55,9 +55,13 @@ 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 ("sear*" IN BOOLEAN MODE);
+select * from t1 where MATCH a AGAINST ("search" IN BOOLEAN MODE);
a b
Full-text search in MySQL implements vector space model
+select * from t1 where MATCH b AGAINST ("sear*" IN BOOLEAN MODE);
+a b
+MySQL has now support for full-text search
+Function MATCH ... AGAINST() is used to do a search
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");