summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorserg@serg.mysql.com <>2001-12-11 14:40:56 +0100
committerserg@serg.mysql.com <>2001-12-11 14:40:56 +0100
commite9595dee5301c08036ee4416686a2e6a760bc89f (patch)
treeb5cdf1ea38e8f1be9349c1caffb845b362ab7c83 /mysql-test
parenta3ae37eda6843fa88076f91cf41a5db7bdc5346b (diff)
parent8e714e9f5840179a7a3df0876644474cb00ad0d5 (diff)
downloadmariadb-git-e9595dee5301c08036ee4416686a2e6a760bc89f.tar.gz
Merge work:/home/bk/mysql-4.0
into serg.mysql.com:/usr/home/serg/Abk/mysql-4.0
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/r/fulltext.result2
-rw-r--r--mysql-test/t/fulltext.test2
2 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result
index 839db356e74..68d3b6ecc62 100644
--- a/mysql-test/r/fulltext.result
+++ b/mysql-test/r/fulltext.result
@@ -55,7 +55,7 @@ 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);
+select * from t1 where MATCH a AGAINST ("sear*" IN BOOLEAN MODE);
a b
Full-text search in MySQL implements vector space model
delete from t1 where a like "MySQL%";
diff --git a/mysql-test/t/fulltext.test b/mysql-test/t/fulltext.test
index ab3fc194891..ce003ee33ad 100644
--- a/mysql-test/t/fulltext.test
+++ b/mysql-test/t/fulltext.test
@@ -31,7 +31,7 @@ select *, MATCH(a,b) AGAINST("support collections" IN BOOLEAN MODE) as x from t
# boolean w/o index:
-select * from t1 where MATCH a AGAINST ("search" IN BOOLEAN MODE);
+select * from t1 where MATCH a AGAINST ("sear*" IN BOOLEAN MODE);
#update/delete with fulltext index