diff options
author | bell@sanja.is.com.ua <> | 2003-10-31 22:14:49 +0200 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2003-10-31 22:14:49 +0200 |
commit | 0747324edef93a955b9f337a188a6d7e377c4fe0 (patch) | |
tree | 2c6fd809f0c5f377f0c9be63a16c38f0853a56cf /mysql-test/r/fulltext.result | |
parent | d1bfa5c598ee3af9288ca496c90ca01c15ebfe24 (diff) | |
parent | 101a9f0180b39f27fb76b59a162f8dec09917cc5 (diff) | |
download | mariadb-git-0747324edef93a955b9f337a188a6d7e377c4fe0.tar.gz |
merge
Diffstat (limited to 'mysql-test/r/fulltext.result')
-rw-r--r-- | mysql-test/r/fulltext.result | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result index 31ed252b22d..da3b3d0b8da 100644 --- a/mysql-test/r/fulltext.result +++ b/mysql-test/r/fulltext.result @@ -9,6 +9,11 @@ select * from t1 where MATCH(a,b) AGAINST ("collections"); a b Only MyISAM tables support collections Full-text indexes are called collections +explain extended select * from t1 where MATCH(a,b) AGAINST ("collections"); +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE t1 fulltext a a 0 1 Using where +Warnings: +Note 1003 select high_priority test.t1.a AS `a`,test.t1.b AS `b` from test.t1 where (match test.t1.a,test.t1.b against (_latin1'collections')) select * from t1 where MATCH(a,b) AGAINST ("indexes"); a b Full-text indexes are called collections @@ -65,6 +70,11 @@ id select_type table type possible_keys key key_len ref rows Extra select * from t1 where MATCH(a,b) AGAINST("support -collections" IN BOOLEAN MODE); a b MySQL has now support for full-text search +explain extended select * from t1 where MATCH(a,b) AGAINST("support -collections" IN BOOLEAN MODE); +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE t1 fulltext a a 0 1 Using where +Warnings: +Note 1003 select high_priority test.t1.a AS `a`,test.t1.b AS `b` from test.t1 where (match test.t1.a,test.t1.b against (_latin1'support -collections' in boolean mode)) select * from t1 where MATCH(a,b) AGAINST("support collections" IN BOOLEAN MODE); a b MySQL has now support for full-text search |