diff options
author | unknown <serg@serg.mysql.com> | 2002-04-18 18:44:18 +0000 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2002-04-18 18:44:18 +0000 |
commit | fa14d2e51bd1990cafbc71d70ad2b3a36d159f8d (patch) | |
tree | 3ad18af758595fdc9b8408fe54afa489d9cb87df /mysql-test | |
parent | db9a12039f9c9fe362f8e935c5f5bda99ade847f (diff) | |
download | mariadb-git-fa14d2e51bd1990cafbc71d70ad2b3a36d159f8d.tar.gz |
ftb bug fixed
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/fulltext.result | 3 | ||||
-rw-r--r-- | mysql-test/t/fulltext.test | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result index cd9d1a93c58..e8d9c9aa708 100644 --- a/mysql-test/r/fulltext.result +++ b/mysql-test/r/fulltext.result @@ -156,6 +156,9 @@ KEY ind5 (title), FULLTEXT KEY FT1 (title) ) TYPE=MyISAM; insert into t1 (title) values ('this is a test'); +select * from t1 where match title against ('test' in boolean mode); +id title +1 this is a test update t1 set title='this is A test' where id=1; check table t1; Table Op Msg_type Msg_text diff --git a/mysql-test/t/fulltext.test b/mysql-test/t/fulltext.test index 616ca7cb081..0334910fe6c 100644 --- a/mysql-test/t/fulltext.test +++ b/mysql-test/t/fulltext.test @@ -118,7 +118,7 @@ select * from t2,t3 where MATCH (t2.inhalt,t3.inhalt) AGAINST ('foobar'); drop table t1,t2,t3; # -# two more bugtests +# three more bugtests # CREATE TABLE t1 ( @@ -130,6 +130,7 @@ CREATE TABLE t1 ( ) TYPE=MyISAM; insert into t1 (title) values ('this is a test'); +select * from t1 where match title against ('test' in boolean mode); update t1 set title='this is A test' where id=1; check table t1; update t1 set title='this test once revealed a bug' where id=1; |